Skip to content

支持小于 12px 的文字

修改 chrome 设置

不现实,不过多赘述。

transform: scale()

css
.small-text {
  transform: scale(0.8);
  transform-origin: 0 0;
  font-size: 12px;
}

zoom

css
.small-text {
  zoom: 0.8;
}

基于 MIT 许可发布