Menu
×
×
正确
<style>
div {
border: 10px solid transparent;
@(12): url(border.png) 30 round;
}
</style>
<body>
<div>This is a div element. It has some text.</div>
</body>
<style>
div {
border: 10px solid transparent;
border-image: url(border.png) 30 round;
}
</style>
<body>
<div>This is a div element. It has some text.</div>
</body>
不正确
点击 此处 重试 正确
下一题 ❯<style> div { border: 10px solid transparent;w3exercise_input_no_0: url(border.png) 30 round; } </style> <body> <div>This is a div element. It has some text.</div> </body> |