解决Mac OSX下的chrome的option元素的padding、background-color不起

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_21859119/article/details/83820195
<select>
     <option>Sushi</option>
     <option>Blue cheese with crackers</option>
     <option>Steak</option>
     <option>Other</option>
 </select>
 
select {
        padding: 10px;
        margin: 0;
        -webkit-appearance:none; /* remove the strong OSX influence from Webkit */
}

参考:https://stackoverflow.com/questions/23040305/how-to-apply-css-to-a-mac-chrome-select-box

猜你喜欢

转载自blog.csdn.net/qq_21859119/article/details/83820195