Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2015
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>PositionRelative</title>
  6.  
  7. <style type="text/css">
  8. /*setting position:relative*/
  9. /*偏移量是相對其原本位置*/
  10. #box1 {width: 300px; height: 300px; background-color: red;
  11. position: relative; top: 50px; left: 50px;}
  12. #box2 {width: 300px; height: 300px; background-color: green;}
  13. #box3 {width: 300px; height: 300px; background-color: blue;}
  14. </style>
  15.  
  16. </head>
  17. <body>
  18. <div id="box1">box1</div>
  19. <div id="box2">box2</div>
  20. <div id="box3">box3</div>
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement