我无法对齐多列页脚。这是我到目前为止所做的。
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;
}
答案 0 :(得分:4)