Menu
×
×
正确
<style>
@(9) {
@(8): relative;
top: @(4);
}
</style>
<body>
<h1 class="myheader">This is a heading</h1>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
</body>
<style>
.myheader {
position: relative;
top: 50px;
}
</style>
<body>
<h1 class="myheader">This is a heading</h1>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
</body>
不正确
点击 此处 重试 正确
下一题 ❯<style>w3exercise_input_no_0{w3exercise_input_no_1: relative; top:w3exercise_input_no_2; } </style> <body> <h1 class="myheader">This is a heading</h1> <p>This is a paragraph</p> <p>This is a paragraph</p> </body> |