我需要在我的网站上设置选择框的样式,如下所示
我已使用html
+ css
取代了以下修正尺寸,
<div><select></select></div>
div{
background: url("select-box-background.png") no-repeat scroll right center #fff;
height: 23px;
overflow: hidden;
width: 54px;
}
select{
background: transparent;
border: 0 none;
border-radius: 0;
font-size: 12px;
line-height: 1;
padding: 3px;
width: 78px;
color: #78abd0;
}
但是我无法将这个应用于所有宽度不同的选择框,因为我已经完成了固定宽度的样式。
如何使用动态宽度管理相同的事物。