Foundation 列表
在 HTML 中,無序列表 (<ul>
) 實例如下:
<ul>
<li>List item</li>
<li>List item</li>
<li>List item</li>
<li>List item</li>
</ul>
<li>List item</li>
<li>List item</li>
<li>List item</li>
<li>List item</li>
</ul>
結果:
- List item
- List item
- List item
- List item
圓圈識別字
在 Foundation 中,無序列表 (<ul>
) 的首碼符號為圓圈,使用 .circle 類,實例如下:
<ul class="circle">
<li>List item</li>
...
</ul>
<li>List item</li>
...
</ul>
方塊識別字
方塊識別字首碼使用 .square 類:
<ul class="square">
<li>List item</li>
...
</ul>
<li>List item</li>
...
</ul>
無識別字
如果你不需要識別字,你可以使用 .no-bullet 類:
<ul class="no-bullet">
<li>List item</li>
...
</ul>
<li>List item</li>
...
</ul>
如果你需要添加一個水準的列表,可以在 <ul>
上添加 .inline-list
類:
<ul class="inline-list">
列表菜單
一些 Web 頁面可能需要列表菜單。
在 HTML 中,列表菜單同無序列表 <ul>
來定義,例如: