html - CSS Floating Divs and Footer? -
i have this:
so see, 2 floating divs @ top , solid div @ bottom. solid div (footer) hides under 2 floating divs.
how can make stays under 2 floating divs , not in them on imgur?
.left { float:left; width:300px; } .right { float:right; width:300px; } .footer { width:600px; }
add clear:both;
footer rules.
.footer { width:600px; clear:both; }
Comments
Post a Comment