Answers for "list and explain css transition properties"

CSS
2

transition various properties css

img {
    height: 400px;
    width: 400px;

    transition: height 0.5s linear, width 0.5s linear;
}
Posted by: Guest on July-18-2021
2

transition syntax css

transition: property duration transition-timing-function delay; 
/*Shorthand Property*/
Posted by: Guest on September-08-2020

Browse Popular Code Answers by Language