Advertisement
here2share

HTML height of 200px and a width of 50%

Aug 16th, 2016
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.30 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. div {
  6.     height: 200px;
  7.     width: 50%;
  8.     background-color: powderblue;
  9. }
  10. </style>
  11. </head>
  12. <body>
  13.  
  14. <h2>Set the height and width of an element</h2>
  15.  
  16. <p>This div element has a height of 200px and a width of 50%:</p>
  17.  
  18. <div></div>
  19.  
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement