Menu
×
×
正确
<style>
div {
background-image: linear-gradient(@(8), white, green);
}
</style>
<body>
<div style="height:200px"></div>
</body>
<style>
div {
background-image: linear-gradient(to right, white, green);
}
</style>
<body>
<div style="height:200px"></div>
</body>
不正确
点击 此处 重试 正确
下一题 ❯<style> div { background-image: linear-gradient(w3exercise_input_no_0, white, green); } </style> <body> <div style="height:200px"></div> </body> |