I am working on a CSS layout, but I donโt understand why the background color of my navigation bar does not appear unless I add overflow: hidden in CSS. Can someone explain to me what is going on? Thanks:)
My CSS file:
@import "reset.css"; /* Meyer CSS reset */ body { background-color: #f3f3f3; font: 15px sans-serif; } #wrapper { width: 1000px; margin: 0 auto; } #navigation { width: inherit; margin-top: 20px; background-color: #ccc; overflow: hidden; } #navigation li { float: left; } #navigation li a { display: block; padding: 10px 10px; text-decoration: none; color: #000; } #navigation li a:hover { background-color: #aaa; }
My html file:
<!DOCTYPE html> <html> <head> <title>Layout</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="css/styles.css" /> </head> <body> <div id="wrapper"> <div id="navigation"> <ul> <li><a href="">Nav0</a></li> <li><a href="">Nav1</a></li> <li><a href="">Nav2</a></li> <li><a href="">Nav3</a></li> <li><a href="">Nav4</a></li> <li><a href="">Nav5</a></li> </ul> </div> <div id="header"> </div> <div id="content"> </div> <div id="footer"> </div> </div> </body> </html>
background-color css
kai
source share