×
×
Correct!
Position the <h1> element to always be 50px from the top, and 10px from the right, relative to the window/frame edges.
<style>
h1 {
position: fixed;
top: 50px;
right: 10px;
}
</style>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
</body>
Not CorrectClick here to try again. Correct!<style> h1 {: ; : 50px; : 10px; } </style> <body> <h1>This is a heading</h1> <p>This is a paragraph</p> <p>This is a paragraph</p> </body> |