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 -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -