div+css布局必瞭解的列表元素ul ol li dl dt dd詳解

來源:互聯網
上載者:User

區塊層級元素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>

相關文章

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.