css – 样式选项组标签

前端之家收集整理的这篇文章主要介绍了css – 样式选项组标签前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以在下拉式选择器中只选择optgroup的标签
<select>
    <optgroup label="Group Name">
        <option>My option</option>
    </optgroup>
</select>
@H_301_4@

解决方法

使用属性选择器
[label]
{
color: red;
}

编辑

<select>
<optgroup label="Cars">
<option>Honda</option>
<option>Merc</option>
</optgroup>
<optgroup label="Bikes">
<option>Kawasaki</option>
<option>Yamaha</option>
</optgroup>
</select>


optgroup[label="Cars"]
{
color: red;
}

optgroup[label="Bikes"]
{
color: blue;
}

option
{
color: black;
}
@H_301_4@ @H_301_4@ 原文链接:https://www.f2er.com/css/216524.html

猜你在找的CSS相关文章