Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>Relative</title>
- <style type="text/css" media="screen">
- #box{
- background : blue;
- width : 300px;
- height : 300px;
- top : 100px;
- left : 200px;
- position:relative;
- }
- </style>
- </head>
- <body>
- <div id="box">
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement