兼容性处理
时间:2019-06-24 19:28:56
收藏:0
阅读:96
1、IOS 中光标错位或过长问题:
导致原因:input 设置了 line-height 或 fixed 导致。解决办法去掉 line-height,设置 height 或使用 absolution
2、去掉 select 中默认下拉小箭头
IE :select::-ms-expand { display: none; } /*清除ie的默认选择框样式清除,隐藏下拉箭头*/
chorme: appearance:none; -moz-appearance:none; -webkit-appearance:none; background-size: 12px 12px; background: url("/assets/img/caret.png") no-repeat scroll right center transparent;
原文:https://www.cnblogs.com/xqmyhome/p/11078812.html
评论(0)