动态宽度自定义选择框与CSS

时间:2014-06-08 12:22:48

标签: html css

我需要在我的网站上设置选择框的样式,如下所示

enter image description here

我已使用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;
}

但是我无法将这个应用于所有宽度不同的选择框,因为我已经完成了固定宽度的样式。

如何使用动态宽度管理相同的事物。

0 个答案:

没有答案
相关问题