我试图写一个像这样的页脚
我说我在 Css 方面很差吗?
我的CSS看起来像这样
#footer-navi
{
margin-bottom:1.5em;
padding-bottom:1.5em;
}
clearfix
{
display:block;
}
#footer-group
{
margin:0 auto;
}
编辑: 这是一些 html
<div id="footer-group">
<ul id="footer-navi" class="clearfix">
<li>
<h4>Products</h4>
<ul>
<li><a href="#">test 1</a><li>
</ul>
<h4>Products 2</h4>
<ul>
<li><a href="#">test 2</a><li>
</ul>
</li>
</ul>
</div>
我怎样才能实现像上面的页脚这样的东西?非常感谢。