CSS列对齐

时间:2014-06-13 16:46:47

标签: html css

我无法对齐多列页脚。这是我到目前为止所做的。

http://jsfiddle.net/98xyG/

HTML:

<footer>
    <div id="aboutus"><h4>About Us</h4></div>
    <div id="contact"><h4>Contact Us</h4></div>
    <div id="location"><h4>Headquarters</h4></div>
</footer>

CSS:

footer {
    width:100%;
    height:250px;
    position:absolute;
    bottom:0;
    left:0;
    background:#ee5;
    clear:both;
}
footer  #aboutus{
    margin-left:10px;
    margin-right:73%;
    width:33%;
    height:1px;
}
footer #contact{
    margin-left: 35%;
    margin-right: 30%;
    height:1px;
}
footer #location{
    margin-left: 73%;
    height:1px;
}

1 个答案:

答案 0 :(得分:4)

添加

footer {overflow: hidden}
footer > div {float: left;}

工作小提琴:http://jsfiddle.net/98xyG/1/