Menu
×
×
正确
<style>
div {
background: red;
@(25): 10px;
}
</style>
<body>
<div>This is a div element. It has some text.</div>
</body>
<style>
div {
background: red;
border-bottom-left-radius: 10px;
}
</style>
<body>
<div>This is a div element. It has some text.</div>
</body>
不正确
点击 此处 重试 正确
下一题 ❯<style> div { background: red;w3exercise_input_no_0: 10px; } </style> <body> <div>This is a div element. It has some text.</div> </body> |