Menu
×
×
Correct!
Exercise:Specify that the background image should be shown once, in the top right corner. Hint: Use the background-repeat and background-position properties. |
Edit This Code:
x
<html> <head> <style> body { background-image: url("https://www.w3schools.com/css/img_tree.png"); } </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_background4 by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 31 Mar 2021 13:04:45 GMT --> </html> Result:
|
Correct Code:
xxxxxxxxxx Result:
|