标签 css3 下的文章

网页字体图标锯齿问题

##### 当网页中的字体图标缩小时可能会遇到部分图标存在锯齿现象,可以通过CSS3属性webkit-text-stroke-width设置对象文字描边厚度进行简单处理: ```css //消除锯齿 -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; -webkit-text-stroke-width: 0.2px; ``` **未添加除锯齿样式 和 添加除锯齿样式后的前后对比:** ![](https://www.fity.cn/usr/uploads/2018/08/20180802033101_86097.jpg) **PS:**webkit-text-stroke是居中描边 -...

继续阅读 »