Menu
×
×
正确
<style>
body {
background-image: url('img1.gif'), url('img2.gif');
background-repeat: no-repeat, no-repeat;
@(19): @(8), @(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('img1.gif'), url('img2.gif');
background-repeat: no-repeat, no-repeat;
background-position: left top, right top;
}
</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('img1.gif'), url('img2.gif');
background-repeat: no-repeat, no-repeat;
background-position: top left, right top;
}
</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('img1.gif'), url('img2.gif');
background-repeat: no-repeat, no-repeat;
background-position: top left, 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('img1.gif'), url('img2.gif');
background-repeat: no-repeat, no-repeat;
background-position: left top, right top;
}
</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('img1.gif'), url('img2.gif'); background-repeat: no-repeat, no-repeat;w3exercise_input_no_0:w3exercise_input_no_1,w3exercise_input_no_2; } </style> <body> <h1>This is a heading</h1> <p>This is a paragraph</p> <p>This is a paragraph</p> </body> |