html - CSS Floating Divs and Footer? -


i have this:

enter image description here

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; } 

https://developer.mozilla.org/en-us/docs/web/css/clear


Comments

Popular posts from this blog

mysql - FireDac error 314 - but DLLs are in program directory -

wpf - C# NAudio - Changing audio playback position still plays a small buffer of old position -

Log not being recorded for quickfix c++ Session -