Advertisement
newbitek

position

Dec 25th, 2017
541
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.33 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  <title>Absolute</title>
  5.  <style type="text/css" media="screen">
  6.   #box{
  7.    width:300px;
  8.    height:300px;
  9.    background:blue;
  10.    }
  11.   #box2{
  12.    width:50px;
  13.    height:50px;
  14.    background:yellow;
  15.    }
  16.  </style>
  17. </head>
  18. <body>
  19. <div id="box">
  20.  <div id="box2"></div>
  21. </div>
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement