Menu
×
×
正确
<style>
@(10) {
@(6) red;
}
</style>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph</p>
<p class="colortext">This is a paragraph</p>
<p class="colortext">This is a paragraph</p>
</body>
<style>
.colortext {
color: red;
}
</style>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph</p>
<p class="colortext">This is a paragraph</p>
<p class="colortext">This is a paragraph</p>
</body>
不正确
点击 此处 重试 正确
下一题 ❯<style>w3exercise_input_no_0{w3exercise_input_no_1red; } </style> <body> <h1>This is a heading</h1> <p>This is a paragraph</p> <p class="colortext">This is a paragraph</p> <p class="colortext">This is a paragraph</p> </body> |