下阶段需要进一步熟悉的html元素

以下元素不是特别常用,但是在html5兼容性越来越强的浏览器环境中,它们有更好的语义,今后的代码中应该根据特定的语境,选择最合适的元素。bootstrap和normalize.css中有很多样式定义都用到下面的元素。

<abbr> 定义缩写。
The<abbr title="People's Republic of China">PRC</abbr>was founded in 1949.
<address> 定义文档作者或拥有者的联系信息。
<address>
Written by <a href="mailto:[email protected]">Donald Duck</a>.<br> 
Visit us at:<br>
Example.com<br>
Box 564, Disneyland<br>
USA
</address>
<article> 定义文章。
<article>
  <h1>Internet Explorer 9</h1>
  <p>Windows Internet Explorer 9(简称 IE9)于 2011 年 3 月 14 日发布.....</p>
</article>
<aside> 定义页面内容之外的内容。
<p>Me and my family visited The Epcot center this summer.</p><aside><h4>Epcot Center</h4>
The Epcot Center is a theme park in Disney World, Florida.</aside>
<b> 定义粗体字。
<big> 定义大号文本。
<blockquote> 定义长的引用。
<blockquote>Here is a long quotation here is a long quotation here is a long quotation 
here is a long quotation here is a long quotation here is a long quotation 
here is a long quotation here is a long quotation here is a long quotation.</blockquote>
<cite> 定义引用(citation)。可使用该标签对参考文献的引用进行定义,比如书籍或杂志的标题。
<code> 定义计算机代码文本。
<del> 定义被删除文本。请与 <ins> 标签配合使用,来描述文档中的更新和修正。
<em> 定义强调文本。
<embed> 定义外部交互内容或插件。
<embed src="helloworld.swf" />
<figcaption> 定义 figure 元素的标题。
<figure> 定义媒介内容的分组,以及它们的标题。
<footer> 定义 section 或 page 的页脚。
<header> 定义 section 或 page 的页眉。
<i> 定义斜体字。
<ins> 定义被插入文本。
<kbd> 定义键盘文本。
<mark> 定义有记号的文本。
<p>Do not forget to buy<mark>milk</mark>today.</p>
<meter> 定义预定义范围内的度量。
<nav> 定义导航链接。
<pre> 定义预格式文本。
<progress> 定义任何类型的任务的进度。
<q> 定义短的引用。
<samp> 定义计算机代码样本。
<section> 定义 section。
<small> 定义小号文本。
<sub> 定义下标文本。
<sup> 定义上标文本。
<time> 定义日期/时间。
<var> 定义文本的变量部分。

你可能感兴趣的:(下阶段需要进一步熟悉的html元素)