Menu
×
×
Correct!
Exercise:Position the <h1> element relative to the browser window. 50px from the top, and 50px from the right. Hint: Use position: fixed. |
Edit This Code:
x
<html> <head> <style> h1 { color: red; } </style> </head> <body> <h1>This is a Heading</h1> <p>This is a paragraph.</p> <p>This is another paragraph.</p> </body> <!-- Mirrored from www.w3schools.com/css/exercise.asp?filename=exercise_positioning1 by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 05 Jun 2019 13:16:59 GMT --> </html> Result:
|
Correct Code:
xxxxxxxxxx Result:
|