Record: 改变Html字体文件大小,改变整个body字体大小

90 阅读1分钟

@media (min-width: 1440px) {
  html:not([style*="font-size"]) {
    font-size: 16px !important;
  }
}

@media (min-width: 1280px) and (max-width: 1439px) {
  html:not([style*="font-size"]) {
    font-size: 14px !important;
  }
}

@media (max-width: 1279px) {
  html:not([style*="font-size"]) {
    font-size: 12px !important;
  }
}