美文网首页
自定义select样式

自定义select样式

作者: niunan | 来源:发表于2020-02-24 23:12 被阅读0次

    自定义select样式,下面是CSS代码,主要是那个

    appearance 样式

    <pre style="margin: 10px 0px; padding: 10px; border: 1px solid rgb(204, 204, 204); outline: 0px; font-weight: inherit; font-style: inherit; font-family: "Source Code Pro", Consolas, Monaco, Menlo, Consolas, monospace; font-size: 10px; vertical-align: baseline; position: relative; z-index: 0; line-height: 22.4px; overflow-wrap: break-word; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); white-space: pre-wrap; overflow: auto; color: rgb(255, 255, 255); text-shadow: rgb(68, 68, 68) 0px 1px; background: rgb(39, 40, 34);"> select {
    width: 220px;
    margin-left: 12px;
    padding-left: 12px;
    height: 31px;
    line-height: 31px;
    font-size: 12px;
    color: #333;
    appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    background: url(simg3.jpg) right center no-repeat;
    background-size: 29px 27px;
    border: 2px solid #fe606e;
    overflow: hidden;
    }</pre>

    下面是相关图片:

    image

    image

    相关文章

      网友评论

          本文标题:自定义select样式

          本文链接:https://www.haomeiwen.com/subject/utpgqhtx.html