
css
老王学前端
前端菜鸡
展开
-
ios点击阴影
* { -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -webkit-tap-highlight-color: transparent; } rgba(0, 0, 0, 0) = transparent 任选上述方法中的一个原创 2018-05-26 14:15:39 · 276 阅读 · 0 评论 -
css折行字体变大
Font Boosting(字体放大)1. 别名Text Autosizer(文本自调)Font Inflation(字体膨胀)2. 现象字体显示尺寸比CSS中指定尺寸大。Chrome自行放大页面字体的大小。3. 原因 当我们在手机上浏览网页时,很可能因为原始页面宽度较大,在手机屏幕上缩小后就看不清其中的文字了。而 Font Boosting 特性在这时会自动...原创 2018-05-26 15:21:37 · 973 阅读 · 0 评论 -
img标签居中显示图片内容
1. 话不多少,就说如此简单img{ object-fit: cover;}原创 2018-05-16 11:58:20 · 9592 阅读 · 0 评论 -
清除浮动兼容ie
.clear:after { content: ""; display: block; height: 0; clear: both; visibility: hidden;}.clear { zoom: 1;}原创 2018-07-02 11:33:51 · 1401 阅读 · 0 评论