HTML CSS examples for CSS Widget:Div
Set div height
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> * {<!-- ww w. ja va2 s . co m--> background-color: yellow; } div { height: 50px; background-color: red; } </style> </head> <body> <div> </div> </body> </html>