gpt4 book ai didi

html - CSS 应用不正确?

转载 作者:太空宇宙 更新时间:2023-11-03 23:51:27 25 4
gpt4 key购买 nike

我使用的是 Firefox 25。但它也发生在 IE7/8

这是 HTML:

<div class="elemento">
<div class="form">
<label for="formulario"> <span>Formulario:</span> </label>
</div>
<select id="formulario" name="formulario" class="select">
<option value="Contratos - Literario">Contratos - Literario</option><option value="Inscripcion de obra publicada">Inscripcion de obra publicada</option>
</select>
</div>
</div>

我已经应用了这个 CSS,Firebug 说:

div.box .select {
background: none repeat scroll 0 0 #333333;
border-color: #171717;
border-style: double;
border-width: 1px;
color: #FFFFFF;
padding: 3px;
width: 180px;
}
.acciones_botonera input, select {
background-color: #BBBBBB;
border: medium none;
color: #114477;
height: 100%;
margin: 0;
padding: 0;
}

为什么要特别应用第二个 CSS? .acciones_botonera input, select 我在这里不是说只将它应用于 select 元素,这些元素位于已应用 .acciones_botonera 类的元素内部?

最佳答案

.acciones_botonera input, select {

}

将大括号之间的所有内容应用到具有类“.acciones_botonera”的元素内的所有输入以及 DOM 中的所有选择。

如果你真的想实现你所描述的情况,它应该看起来像这样:

.acciones_botonera input, .acciones_botonera select {

}

关于html - CSS 应用不正确?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19978317/

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