Design comparison
SolutionDesign
Solution retrospective
Any tips to improve will be greatly appreciated. Thanks in advance.
Community feedback
- @frontendparhamPosted almost 3 years ago
Great Work, a NOTE:
- this piece of code (transition: 0.4s ease;) will not work.
- Correct: transition: opacity 0.4s; or transition: all 0.4s;
- The transition property is specified as one or more single-property transitions, separated by commas.
- Each single-property transition describes the transition that should be applied to a single property (or the special values all and none).
- So don't forget to write the property name.
0
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord