Latest comments
- @Unomars4@frontendparham
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.
- @Abulkalam-Asif@frontendparham
It was very, very good, it really helped me. THANK YOU MUHAMMAD