Advertisement
newbitek

relativ

Dec 25th, 2017
385
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.  <title>Relative</title>
  5.  <style type="text/css" media="screen">
  6.   #box{
  7.    background : blue;
  8.    width : 300px;
  9.    height : 300px;
  10.    top : 100px;
  11.    left : 200px;
  12.    position:relative;
  13.    }
  14.  </style>
  15. </head>
  16. <body>
  17. <div id="box">
  18.  </div>
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement