您的位置:首页 > 移动开发

web开发中常用css兼容代码(包括移动端)

2017-10-28 11:50 351 查看
持续更新中。。。

1、select去除下拉按钮

select::-ms-expand { display: none; }
select{
-webkit-appearance: none;
-moz-appearance: none;
-o-appearance: none;
appearance: none;
}


2、lable中点击img无法选中input

<label>
<img src="" disabled/>
<input name="" value=""/>
</label>
或者也可以在img上面覆盖一个透明的div

3、fixed防抖(-webkit-内核)

-webkit-transform: translateZ(0);

4、去掉移动端hover时的半透明遮罩

a,button,input,textarea{-webkit-tap-highlight-color: rgba(0,0,0,0;)}

5、移动端弹性滚动
-webkit-overflow-scrolling: touch; //auto
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  css ie 兼容 select