Answers for "css transform hover"

CSS
1

css hover animation

.YOURHTMLCONTENT i {
    height: auto;
    float: left;
    color: #fff;
    font-size: 55px;
    margin: 30px 30px 30px 30px;
    transition: 0.8s;
    transition-property: color, transform;
}

.YOURHTMLCONTENT i:hover {
    color: #FF5733;
    transform: scale(1.3);
}
Posted by: Guest on August-11-2020
2

css transform transition

.selector {
  transition: transform 1s;
}
Posted by: Guest on May-27-2020
28

on hover css

/* Changes an element's color on hover */

.selector {
	background-color: black;
}

.selector:hover {
	background-color: blue;
}
Posted by: Guest on February-15-2020

Browse Popular Code Answers by Language