HTML CSS examples for CSS Widget:Div
Stack two tall div elements
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> div{<!--from w w w .j a v a 2 s.c o m--> height:800px; text-align:center; } .blue{ background:lightblue; } .green{ background:lightgreen; } button{ position:fixed; bottom:20px; } </style> </head> <body> <div class="blue"> <h2>header</h2> <button>button</button> </div> <div class="green"> <h2>2nd header</h2> </div> </body> </html>