Menu
×
×
Correct!
Exercise:There is a CSS property that allows us to specify if the background image should be positioned according to the border, padding or the content. Insert the correct CSS background property, and value, to position the image according to where the content is positioned.
<style>
#example1 {
padding: 20px;
background-image: url('img1.gif');
background-repeat: no-repeat;
@(17): @(11);
}
</style>
<style>
#example1 {
padding: 20px;
background-image: url('img1.gif');
background-repeat: no-repeat;
background-origin: content-box;
}
</style>
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 138 exercises.
Are you sure you want to continue?