当内部 div 具有静态高度时,什么是在另一个 div 中垂直对齐 div 的好方法?至于高度有时会有所不同。http://jsfiddle.net/daCt3/
HTML:
<div id="footer">
<div id="footerLeft">
<div id="copyright">
<!-- <copy> -->Copyright MyCorp © 2013<!-- </copy> -->
<br>Some more random stuff
</div>
</div>
<div id="footer-right">
</div>
</div>
CSS:
/*-- FOOTER --*/
#footer {
bottom:0px;
width:100%;
padding-bottom:20px;
padding-top:0px;
background-color:#2C2E31;
border-top:#242426 solid 2px;
position:fixed;
height:100px;
}
#footerLeft {
margin-top:50px;
float:left;
width:300px;
background-color:red;
}