Answers for "make font awesome spin but not the word on hover"

CSS
0

make font awesome spin but not the word on hover

i:hover::before {
  transform: rotate(360deg);
}

i:before {
  display: inline-block;/* mandatory to be able to use transform */
  transition: 1s all;
}
Posted by: Guest on January-07-2022

Code answers related to "make font awesome spin but not the word on hover"

Browse Popular Code Answers by Language