gpt4 book ai didi

html - 将样式应用于选择框,为什么不起作用?

转载 作者:太空宇宙 更新时间:2023-11-04 16:13:25 25 4
gpt4 key购买 nike

我想给选择框添加样式,我尝试了以下代码,但问题是标签选项中有 less 和 rise 字母,它不会改变样式选择框的宽度并且它是固定的。如何用'width="auto"'来完成?

演示: http://jsfiddle.net/uG3gq/

<div class="select_box" style="margin: 10px 5px 0 5px;">
<select name="type_star">
<option disabled="disabled" value="">Select</option>
<option>Ttttttttttttttttttttt</option>
<option>Aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</option>
<option>B</option>
<option>C</option>
</select>
</div>

.select_box {
overflow:hidden;
background:url(http://img4up.com/up2/17845058228414984898.png) no-repeat right #9ff;
height:24px;
font:13px Tahoma,Arial,Helvetica,Sans-serif;
color:#888888;
padding:0;
}
.select_box select {
background:transparent;
padding:0 0 0 0;
border:1px soild #666;
font-size:16px;
color:#888888;
height:26px;
-webkit-appearance:none;
outline: none;
}

最佳答案

您可以保留它而不设置显式宽度,让浏览器自动处理宽度。在这种情况下,浏览器将确定最长的选项并据此设置选择元素的宽度。或者您可以将其设置为 width=200px; 这样的宽度,这将给出明确的宽度。

除非你想写一些 Javascript 来确定最长的选项并动态设置宽度,否则我认为这是不可能的(AFAIK)

关于html - 将样式应用于选择框,为什么不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7965562/

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