使用 font-size 设置小于 12px 的字体时,发现并不生效(字体不会再缩小了)。
解决方案
如果执意要设置小于 12px 的字体,那只能使用 transform: scale() 缩放属性来实现。
/* 小于12px 的字体 */
.txt {
-webkit-transform: scale(0.5)
}
使用 font-size 设置小于 12px 的字体时,发现并不生效(字体不会再缩小了)。
解决方案
如果执意要设置小于 12px 的字体,那只能使用 transform: scale() 缩放属性来实现。
/* 小于12px 的字体 */
.txt {
-webkit-transform: scale(0.5)
}