HTML

box2.html

Jan 30th, 2018
316
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.54 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>CSS</title>
  5. <meta charset="utf-8">
  6. <style>
  7. .div1 {width: 200px;
  8.        height: 200px;
  9.        background-color: #D1ECFF;
  10.        border: 3px dashed #000000;
  11.        padding: 5px;
  12. }
  13. .div2 {width: 100px;
  14.        height: 100px;
  15.        background-color: #ffffff;
  16.        border: 3px ridge #000000;
  17.        padding: 5px;
  18.        margin: 10px;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <div class="div1">
  24.   This is the outer box.
  25.   <div class="div2">
  26.   This is the inner box.
  27.   </div>
  28. </div>
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment