Menu
×
×
正确
<style>
div {
width: 100px;
height: 100px;
background: red;
transition: width 2s;
@(26): @(11);
}
div:hover {
width: 300px;
}
</style>
<body>
<div>This is a div</div>
</body>
<style>
div {
width: 100px;
height: 100px;
background: red;
transition: width 2s;
transition-timing-function: ease-in-out;
}
div:hover {
width: 300px;
}
</style>
<body>
<div>This is a div</div>
</body>
不正确
点击 此处 重试 正确
下一题 ❯<style> div { width: 100px; height: 100px; background: red; transition: width 2s;w3exercise_input_no_0:w3exercise_input_no_1; } div:hover { width: 300px; } </style> <body> <div>This is a div</div> </body> |