HTML CSS examples for CSS Layout:Parent Container
Get a css box to extend the entire width of the browser window
<html> <head> <style> body {<!-- ww w. j a va 2s . c o m--> margin:0; padding:0; } #strip { background:Chartreuse; padding:6px; } </style> </head> <body> <div id="strip"> This is a nav strip </div> </body> </html>