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

html - Firefox flex bug applied to buttons? -

html - Missing border-right in select on Firefox -

python - build a suggestions list using fuzzywuzzy -