CSS 页脚不在同一行
我正在尝试编写这样的页脚
我有说过我的 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>
我如何实现像上面页脚这样的东西? 非常感谢。
Im trying to write a footer like this one
Did i said that im very bad at Css?
My css looks like this
#footer-navi
{
margin-bottom:1.5em;
padding-bottom:1.5em;
}
clearfix
{
display:block;
}
#footer-group
{
margin:0 auto;
}
EDIT: Here is some 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>
How can i implement somethin like the footer above?
Thanks very much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试这个 HTML:
使用这个 CSS:
查看它:http://jsfiddle.net/AGL4N/
它需要格式化(边距、填充、行高、字体大小等),但你想要的基本想法就在那里。
Try this HTML:
With this CSS:
See it: http://jsfiddle.net/AGL4N/
It needs formatting (margin, padding, line-height, font-size, etc) but the basic idea that you want is there.