样式元素还是使用类?

时间:2014-02-15 06:07:58

标签: html css

如果我在页面上说了四种标题,我想知道哪些更正确。

是否可以使用h1, h2, h3, h4并设置这些元素的样式?

OR是否最好只为每个标题使用<p><div>元素,并为每种类型的标题创建一个类?

最好是使用第二种方法,或者我应该只在我说NINE不同的标题时才使用第二种方法(使用类)?

感谢您的时间。

3 个答案:

答案 0 :(得分:1)

NZGamma请使用h1到h6进行标题。它有助于SEO。

"The six heading elements, H1 through H6, denote section headings. Although the order and occurrence of headings is not constrained by the HTML DTD, documents should not skip levels (for example, from H1 to H3), as converting such documents to other representations is often problematic. W3C"

并使用p代表段落......

链接:http://www.hobo-web.co.uk/headers/

链接:http://webdesign.about.com/od/seo/a/why_use_h1_for_seo.htm

答案 1 :(得分:0)

你可以做到这两点:

h2{
 color:red;
 font-size:12px;
}

h3{
 color:blue;
}


  <h2>Hello</h2>  //will be red and 12px
  <h3>GoodBye</h3> //will be blue

答案 2 :(得分:0)

最好使用标题标签,因为它们是标题的标准。

http://www.w3.org/TR/html401/struct/global.html#h-7.5.5