Webapp-css篇

2018-06-22  本文已影响0人  Crisyhuang

本文以问答的形式,阐述一些我在日常开发中经常遇到的问题,如果您有更好的解决方法,欢迎留言告诉我哦~~

1、点击button时,Android下会自动选中文字并弹出输入法可编辑button内容,禁止这种效果?
-webkit-user-select:none; 
2、click 页面元素,会有半透明的背景色,原来是tap时背景高亮了,将背景色设为透明即可。
-webkit-tap-highlight-color:rgba(255,255,255,0); 
3、重置placeholder的字体颜色?
.mark-input input::-webkit-input-placeholder{ 
     color: #add9ff;
 }
4、focus input时,边框会变色?
outline:none;
5、某小机型的uc浏览器inline-block元素用 font-size:0 方案去除4px间隙,但仍有1px间隙?
父元素:font-size:0,letter-spacing为负值;
子元素:font-size: 14px; letter-spacing: normal;
上一篇下一篇

猜你喜欢

热点阅读