HTML CSS examples for CSS Layout:Position
Stack position of div elements
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> .box {<!-- w ww . j a v a2 s . com--> width:201px; height:201px; padding:11px; display:block; border:2px solid Chartreuse; text-align:center; } </style> </head> <body> <div class="box"> <button>L</button> <button>L</button> </div> <div class="box"> </div> <div class="box"> </div> <div class="box"> </div> </body> </html>