菜单
×
×
正确!
练习为背景添加 2 秒的过渡效果,并转换 <div> 元素的变化。 <style> div { width: 100px; height: 100px; background: red; transition: @(13), @(12); } div:hover { background: blue; transform: rotate(180deg); } </style> <body> <div>这是一个 div</div> </body>
<style> div { width: 100px; height: 100px; background: red; transition: background 2s, transform 2s; } div:hover { background: blue; transform: rotate(180deg); } </style> <body> <div>这是一个 div</div> </body>
<style> div { width: 100px; height: 100px; background: red; transition: transform 2s, background 2s; } div:hover { background: blue; transform: rotate(180deg); } </style> <body> <div>这是一个 div</div> </body>
不正确点击这里重新尝试。 正确!下一题 ❯ |
这将重置所有 138 个练习的分数。
您确定要继续吗?