各种元素的字体大小很小 IE9
Font size tiny on various elements IE9
我正在调试 this website。由于某些原因,在 IE9 上,字体大小正常加载,然后在加载所有内容后缩小。
这是什么原因造成的,如何解决?我已经与 IE9 检查员仔细检查过,CSS 中的 body
中似乎缺少 px 值。
这是我通过 IE9 检查器看到的内容:
CSS 应为:
body {
color: #555;
font-family: "Avenir LT W01_55 Roman1475520", Helvetica, Arial, sans-serif;
font-size: 16px;
font-size: 1.6rem;
line-height: 1.875;
font-weight: normal;
}
显然 IE9 为 body
和 html
内置了 font-size: 100%
。为 p
标签设置 font-sizes
。
我正在调试 this website。由于某些原因,在 IE9 上,字体大小正常加载,然后在加载所有内容后缩小。
这是什么原因造成的,如何解决?我已经与 IE9 检查员仔细检查过,CSS 中的 body
中似乎缺少 px 值。
这是我通过 IE9 检查器看到的内容:
CSS 应为:
body {
color: #555;
font-family: "Avenir LT W01_55 Roman1475520", Helvetica, Arial, sans-serif;
font-size: 16px;
font-size: 1.6rem;
line-height: 1.875;
font-weight: normal;
}
显然 IE9 为 body
和 html
内置了 font-size: 100%
。为 p
标签设置 font-sizes
。