常用CSS元素div ul dl dt ol的簡單解釋

來源:互聯網
上載者:User
css

幾個css元素的簡單解釋 div ul dl dt oldiv,這個很常見,區塊層級元素,div盡量少用,和table一樣,嵌套越少越好

ol  有序列表。

<ol>
  <li>……</li>
  <li>……</li>
  <li>……</li>
</ol>

表現為:

1……
2……
3……

ul 無序列表,表現為li前面是大圓點而不是123

<ul>
<li>……</li>
<li>……</li>
</ul>

很多人容易忽略 dl dt dd的用法

dl 內容塊
dt 內容塊的標題
dd 內容
可以這麼寫:

<dl>
<dt>標題</dt>

<dd>內容1</dd>
<dd>內容2</dd>

</dl>

dt 和dd中可以再加入 ol ul li和p

理解這些以後,在使用div布局的時候,會方便很多,w3c提供了很多元素輔助布局



相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.