box-sizing运行不正常

时间:2013-06-26 09:35:45

标签: html css css3

我正在尝试创建自己的自定义 select标记,但却遇到了一个奇怪的问题。

以下是我的代码:

HTML:

<div class="drop_select">
    <select>
        <option>1</option>
        <option>2</option>
        <option>3</option>
    </select>
</div>

CSS:

.drop_select {
    width:180px;
    height: 34px;
    overflow: hidden;
    background: url(http://s22.postimg.org/liq7aghz5/select_icons.png) no-repeat 148px -165px #000000;
    border-radius: 10px;
    margin-bottom: 5px;
    transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    -webkit-transition: background 0.3s ease-in-out;
    -ms-transition: background 0.3s ease-in-out;
}
.drop_select:hover {
    background-position: 148px -115px;
}
.drop_select select {
    background: rgba(0, 0, 0, 0);
    -moz-background: transparent;
    -webkit-background: transparent;
    width: 202px;
    padding: 8px 5px 8px 8px;
    font: 12px arial;
    line-height: 1;
    border: 0;
    border-radius: 0;
    height: 34px;
    -webkit-appearance: none;
    -o-appearance: none;
    color: #ffffff;
    -o-background: #000000;
}
.drop_select:hover select {
    color: #ebb52d;
}
.drop_select select option {
    color: #fff;
    text-indent: 5px;
    padding: 7px 0px 7px 3px;
    width: 182px !important;
    background: #000;
    border-bottom: dotted 1px #515151;
    transition: background 0.5s ease-in-out;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
}
.drop_select select option:hover, .drop_select select option:focus, .drop_select select option:active {
    background: #515151 !important;
    color: #dfb52d;
}

Strange behavior

  

我在Firefox中使用box-sizing和border-bottom工作,但在chrome和IE中却没有。以上是   截图

希望您能找到上图中的差异。我也在JSFiddle中摆弄了我的代码,请为您提供建议。

提前致谢。

1 个答案:

答案 0 :(得分:0)

简短的回答是,您目前无法在Webkit浏览器中设置下拉选项。您可以使用样式正确的UL来获得相同的结果。