我已经下载了一个标准主题,其主文件normalize.css在一开始就包含这些声明。 我很困惑为什么有三种字体:
html {
font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif; /* 1 */
/* Delete all but one of the following font-size declarations: */
/* Use a 12px base font size. 16px x 75% = 12px */
font-size: 75%; /* 3 */
/* Use a 14px base font size. 16px x .875 = 14px */
font-size: 87.5%; /* 3 */
/* Use a 16px base font size. */
font-size: 100%; /* 3 */
-ms-text-size-adjust: 100%; /* 2 */
-webkit-text-size-adjust: 100%; /* 2 */
/* Establish a vertical rhythm. */
line-height: 1.5em;
}
我想要的只是使用14px的基本字体大小。
答案 0 :(得分:1)
根据评论,您应该保留font-size: 87.5%;
减速并删除其他两个font-size
减速。