Horje
transition css hover Code Example
transition css hover
/* Transition is how much my element will take time to change his state 
   or apply a specific style on it at specific */
.my-div{
  background-color: #f00; /*Red*/
  transition: 3s ease-in-out;
  /* transition: .5s ease-in-out; [0.5 seconds] */
}
.my-div:hover{
  background-color: #00f; /*Blue*/
}
/* .my-div background-color will be changed from red to blue in 3 seconds*/




Css

Related
overlay css background image Code Example overlay css background image Code Example
css not first child Code Example css not first child Code Example
css rotate 180 degrees Code Example css rotate 180 degrees Code Example
html center video Code Example html center video Code Example
css background image size to fit screen Code Example css background image size to fit screen Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
15