面试官:css如何实现6px字体

261 阅读1分钟

谷歌的字体最小限制是12px 我们可以这样实现

.text {
  font-size: 10px; 
  transform: scale(0.83);
}