Menu
×
×
Correct!
Exercise:Specify that the background image should be shown once, in the top right corner.
<style>
body {
background-image: url("img_tree.png");
@(17): @(9);
@(19): @(9);
}
</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: 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!Next ❯ |
This will reset the score of ALL 138 exercises.
Are you sure you want to continue?