float: left
讓項目符號水平排列
使用 float 要非常有技巧,否則版面會天下大亂的
通常,我們會在 float 的元素的 parent 套用 clearfix 的 css 設定 (請參考上面的範例)
原理就請自己參考網站 http://nicolasgallagher.com/micro-clearfix-hack/ 的說明囉
<style>
.cf:before,
.cf:after {content: " "; display: table} /* cf: clearfix */
.cf:after {clear: both}
.nav {float:left; list-style:none; padding-left:17px}
</style>
<ul class="cf">
<li class="nav">
<a href="...">home</a>
</li>
<li class="nav">
<a href="...">animals</a>
</li>
...
</ul>