暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

select下拉框箭头样式修改

Whoooops 2021-07-02
2628
    <style>
    /*下拉前箭头*/
    select{
    /*取消默认箭头开始*/
    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
    /*取消默认箭头结束*/
    border: none;
    width: 9rem;
    font-size: 1rem;
    color: #666;
    text-align-last: center; /* 文本居中*/
    background: url(style/jiantou.png) no-repeat right 0.5rem center;
    background-size: 0.45rem 0.8rem;
    }
    /*下拉后箭头*/
    select:focus {
    background: url(style/jiantou_bottom.png) no-repeat right 0.5rem center;
    background-size: 0.8rem 0.45rem;
    }
    /*修改option*/
    option::-ms-expand{ display: none; }
    option{
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari 和 Chrome */
    appearance:none;
    }
    /* --背景色字体颜色--*/
    option:hover{
    color:#fff;
    background-color:#1E90FF;
    }
    </style>

    文章转载自Whoooops,如果涉嫌侵权,请发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

    评论