内側の 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;
}