1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<!DOCTYPE html> <html> <link href="resources/grid.css" rel="stylesheet"> <style> .grid { white-space: pre; } .a { height: 100%; width: 30px; background: salmon; } </style> <body> <div class="grid"> <div class="a"></div> 	 </div> </body> </html>