除非你的定義更廣泛的像一個百科全書的文章(例如,維基),我不會把它因爲<article>
標籤的物品:
Represents a section of a page that consists of a composition that forms an
independent part of a document, page, or site. This could be a forum post,
a magazine or newspaper article, a Web log entry, a user-submitted comment,
or any other independent item of content.
對於一系列的,你可能有短期的定義一本書或白皮書的附錄,我建議使用數據定義列表:<dl>
寬度<dt>
和<dd>
分別標記術語和定義。
參考:http://html5doctor.com
有一個關於如何最好地利用HTML5標籤得沸沸揚揚,引發了有趣的閱讀。
我可能樣式該
如果我是一個詞彙做一個簡單的定義列表,我可能會開始:
<dl>
<dt><dfn>follow</dfn>:</dt>
<dd>
<p>Go or come after (a person or thing proceeding ahead); move or travel
behind.</p>
<q>She went back into the house, and Ben followed her.</q>
</dd>
</dl>
和應用一些造型如下:
dl {
border: 1px solid #989898;
border-radius: 10px;
padding: 1.00em;
}
dt {
margin-left: 1.00em;
}
dfn {
font-weight: bold;
font-size: 1.25em;
}
dd {
margin-left: 2.00em;
margin-bottom: 3.00em;
}
dd p {
margin: 0 0 0.50em 0;
}
dd q {
display: block;
margin: 0 0 0.50em 0;
font-style: italic;
}
這只是對佈局中各種元素的靈活性和控制力的說明。
小提琴參考:http://jsfiddle.net/audetwebdesign/H6593/
我真的很感激,如果你也可以提供一個關於如何在這種情況下標記例句的見解。也許這不是什麼大問題,但我仍然希望從一開始就設計好它。 – whySoSerious 2013-03-26 11:52:54
我提供了一個示例HTML/CSS來說明如何接近佈局和樣式。 – 2013-03-26 14:42:03
非常感謝,這是一個完整的答案。 – whySoSerious 2013-03-26 14:46:14