带有css重置的样式标题标签

时间:2013-07-28 08:28:02

标签: html css html5 css-reset html-heading

使用css重置后,我的所有标题标签都被重置(当然)。像平常一样对它们进行造型的最佳方法是什么。

当然有更好的方法吗?

h1 { font-size: 2em; }
h2 { font-size: 1.5em; }
h3 { font-size: 1.3em; }
h4 { font-size: 1em; }
h5 { font-size: 0.8em; }
h6 { font-size: 0.7em; }

1 个答案:

答案 0 :(得分:4)

您设置新标题样式的方式可以正常工作。您可能需要考虑添加

h1,h2,h3,h4,h5,h6 {
  font-weight: normal;
  font-style: normal;
}

确保类型默认设置为非斜体/倾斜或粗体(除非您希望默认为强)