We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf1c866 commit 19f46eaCopy full SHA for 19f46ea
css-practice.md
@@ -1018,6 +1018,26 @@ Pick ONE OR MORE options
1018
4. .greyBall:hover {transform: scale(2); animate: 0.5S;}
1019
```
1020
1021
+<details><summary><b>Answer</b></summary>
1022
+
1023
+```css
1024
+.greyBall:hover {
1025
+ transform: scale(2);
1026
+ transition: 500ms transform;
1027
+}
1028
+```
1029
1030
1031
1032
1033
+ transition: 0.5s;
1034
1035
1036
1037
+**⚝ [Try this example on CodeSandbox](https://codesandbox.io/s/css-animation-j0l6yb?file=/src/styles.css)**
1038
1039
+</details>
1040
1041
<div align="right">
1042
<b><a href="#">↥ back to top</a></b>
1043
</div>
0 commit comments