HTML CSS examples for CSS Layout:Fixed Position
Position: fixed to have same with browser
<html lang="en"> <head> <style> body {<!-- w ww. j a va2 s .c om--> margin:0; } header { width:91%; height:100px; background:blue; position:fixed; z-index:100; } .container { width:91%; height:501px; background:red; position:relative; z-index:-3; } </style> </head> <body translate="no"> <header> Lorem ipsum dolor </header> <div class="container"> Lorem ipsum dolor sit </div> </body> </html>