Jer*_*emy 6 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; }
Run Code Online (Sandbox Code Playgroud)
您设置新标题样式的方式将正常工作。您可能需要考虑添加
h1,h2,h3,h4,h5,h6 {
font-weight: normal;
font-style: normal;
}
Run Code Online (Sandbox Code Playgroud)
确保类型默认设置为非斜体/斜体或粗体(除非您希望默认设置为强)