HTML CSS examples for CSS Widget:Sidebar
Full height sidebar over content inside a wrapper
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> .container {<!--from ww w. j av a2 s .com--> width:100%; } .sidebar { background:Chartreuse; float:left; width:26%; height:100%; position:absolute; top:0; bottom:0; } .sections { background-color:yellow; width:76%; height:100%; position:absolute; top:0; bottom:0; right:0; } </style> </head> <body> <div class="container"> <div class="sidebar"> Lorem ipsum dolor </div> </div> <div class="sections"> <div id="section-1"> <div class="container"> Lorem ipsum dolor s </div> </div> <!-- other sections --> </div> </body> </html>