Menu
×
×
正确
<style>
h1 {
@(14): @(9);
}
p {
@(14): @(10);
}
</style>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph</p>
</body>
<style>
h1 {
text-transform: uppercase;
}
p {
text-transform: capitalize;
}
</style>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph</p>
</body>
不正确
点击 此处 重试 正确
下一题 ❯<style> h1 {w3exercise_input_no_0:w3exercise_input_no_1; } p {w3exercise_input_no_2:w3exercise_input_no_3; } </style> <body> <h1>This is a heading</h1> <p>This is a paragraph</p> </body> |