gpt4 book ai didi

javascript - 定义 css 样式的 div 元素

转载 作者:太空宇宙 更新时间:2023-11-03 19:36:15 26 4
gpt4 key购买 nike

我使用 javascript,我有以下元素。我想应用 CSS 样式来更改高度:元素 iframe 的 100px

<div tabindex="-1" 
class="mce-edit-area mce-container mce-panel mce-stack-layout-item"
id="mceu_21" role="group" style="border-width: 1px 0px 0px;" hidefocus="1">
<iframe title="Área de texto enriquecido.
Pulse ALT-F9 para el menu. Pulse ALT-F10 para la barra de herramientas.
Pulse ALT-0 para ayuda" id="text1_ifr" src='javascript:""'
frameborder="0" style="width: 100%; height: 100px; display: block;" allowtransparency="true">
</iframe></div>

我必须如何定义 CSS 样式?

最佳答案

先给iframe添加一个class

<iframe class="height-100"></iframe>

在 CSS 中提供您的样式,

iframe .height-100 {
height: 100px;
}

仅在万不得已时才使用 height: 100px !important

更新:

您已经为您的 iframe 提供了样式

style="width: 100%; height: 100px;"

这应该有效,使用 element select 并检查它是否被其他东西覆盖。

关于javascript - 定义 css 样式的 div 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41256715/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com