菜单
×
×
正确!
练习指定 <div> 元素的过渡应该具有“ease-in-out”速度曲线。 <style> div { width: 100px; height: 100px; background: red; transition: width 2s; @(26): @(11); } div:hover { width: 300px; } </style> <body> <div>这是一个 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>这是一个 div</div> </body>
不正确点击这里重新尝试。 正确!下一个 ❯ |
这将重置所有 138 个练习的分数。
您确定要继续吗?