×
×
Correct!
Specify that the background image should be shown once, in the top right corner.
<style>
body {
background-image: url("img_tree.png");
background-repeat: no-repeat;
background-position: top right;
}
</style>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
</body>
<style>
body {
background-image: url("img_tree.png");
background-repeat: no-repeat;
background-position: right top;
}
</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> body { background-image: url("img_tree.png");: ; : ; } </style> <body> <h1>This is a heading</h1> <p>This is a paragraph</p> <p>This is a paragraph</p> </body> |