答案 0 :(得分:2)
这是因为字体大小被设置为父<td>
上的样式属性。我updated the fiddle以12px的字体大小显示它。
更改的代码块如下,font-size
设置为12px:
<td class="content threecol first" style="font-size: 12px;line-height: 1.4em;color: #444;width: 25%;padding-right: 20px;padding-left: 0;padding-top: 20px;border-right: 1px solid #ccc;border-bottom: 1px solid rgb(204 , 204, 204);">
答案 1 :(得分:1)
您的字体大小设置都被HTML代码中的内联“样式”声明覆盖了,例如id="topbar" style="text-align: center;font-size: 12px;
- 这些是在 CSS之后应用。