Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>TODO supply a title</title>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <style>
- p, div {
- width: 200px;
- height: 50px;
- }
- #one {
- background-color: cyan;
- width: 200px;
- height: 50px;
- }
- #two {
- background-color: yellow;
- position: fixed;
- top: 0px;
- right: 0px;
- }
- </style>
- </head>
- <body>
- <p id="one">Block #1</p>
- <div id="two">Block #2</div>
- <p>Block #3</p>
- <p>Block #4</p>
- <p>Block #5</p>
- <p>Block #6</p>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment