select箭头样式

html:

<label class="lblSelect">
    <select name="companyType" class="authen_select" id="companyType">
        <option value="请选择">请选择</option>
        <option value="XXXX">XXXXX</option>
    </select>
</label>

css:

.lblSelect{position: relative;display: inline-block;}
.lblSelect select{
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid #DCDEE2;
    height: 40px;
    line-height: 40px;
    position: relative;
    color:#B4BBBC;
}
.lblSelect:before{
    position: absolute;
    content: '\25bc';
    right: 0;
    top: 0;
    width: 30px;
    height: 38px;
    background-color: #f2f2f2;
    z-index: 10;
    vertical-align: middle;
    text-align: center;
    line-height: 38px;
    color: #DDDDDD;
    border: 1px solid #DCDEE2;
    pointer-events: none;
}
.lblSelect select{padding-left: 16px;min-width: 334px;}

猜你喜欢

转载自blog.csdn.net/yangmy_Shy/article/details/89326328