关于修改select默认样式

来源:互联网 发布:p2p网络引擎停止 编辑:程序博客网 时间:2024/05/17 07:15

关于修改select默认样式

For Chrome and Firefox

select {  /*The border of select box for Chrome is different from Firefox,In order to make them the same.*/  border: solid 1px #000;  /*First,Clear default style of select box*/  appearance:none;  -moz-appearance:none;  -webkit-appearance:none;  /*second,Modify the little arrow in the select box*/  background: url("图片地址") no-repeat scroll right center transparent;  /*Make room for small arrows to avoid being covered by text*/  padding-right: 14px;}/*Remove the default select box style for ie and hide the drop-down arrows*/select::-ms-expand { display: none; }
阅读全文
1 0
原创粉丝点击