PC端和移动端一些奇葩兼容性问题

IE10默认在input框中输入内容时会显示一个'X',密码框会显示一个'小眼睛',怎么把这个默认的'X'或者'小眼睛'删除掉。 

PC端和移动端一些奇葩兼容性问题PC端和移动端一些奇葩兼容性问题 在password输入框显示一个“小眼睛”的按钮,去掉他的方法如下:

input[type="password"]::-ms-clear { display: none;} input[type="password"]::-ms-reveal { display: none;}
IOS下input[type='tel'],input[type='text']输入框,再触发的时候,input会有一个灰色的背景色块,如何解决,一个很关键的属性-webkit-tap-highlight-color,这个属性只用于IOS(iPhone和iPad),可以设置-webkit-tap-highlight-color任何颜色,想要禁用这个高亮,设置颜色的alpha值为0即可。-webkit-tap-highlight-color:transparent; 

PC端和移动端一些奇葩兼容性问题

input,textarea,input:focus, textarea:focus{     outline: none; -webkit-tap-highlight-color: transparent; -webkit-user-modify: read-write-plaintext-only; }