自定义select样式

1.更改select样式

 <!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>select</title>
    <style>
        select {
            appearance:none;
            -moz-appearance:none;
            -webkit-appearance:none;
            background:url(./img/arrow.jpg) no-repeat right center;
            padding-right:14px;
            148px;
            height:30px;
            border:1px solid #ccc;
            color:#999999;
        }
    </style>
</head>
<body>
      <select class="info-select">
            <option selected="selected">1 </option>
            <option>2</option>
      </select>

</body>
</html>
View Code

2.option样式更改

原文地址:https://www.cnblogs.com/QIQIZAIXIAN/p/7593172.html