本文共 555 字,大约阅读时间需要 1 分钟。
一、直接CSS定义A样式a{
outline:none;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
-webkit-tap-highlight-color是ios和android下点击元素时出现的阴影,-webkit-tap-highlight-color: rgba(0,0,0,0);可以将该阴影透明化,进而解决问题。
二、去除默认select样式select {
font-size: 0.26rem;
color: #353535;
height: 0.9rem;
border-radius: 4px;
width: 90%;
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
background: #fff;
border: 4px solid #353535;
/*padding-right: 18px;*/
background: url(../images/3bottomj.png) no-repeat right 10px top 12px;
/*padding-left: 5px;*/
display: block;
float: left;
}
转载地址:http://pznva.baihongyu.com/