CSS Simple link hover animation

المعرفة:: CSS
الحالة:: ملاحظة_مؤرشفة


a:link,  
a:visited {  
  color: red;  
  transition: all 0.3s; /* This */  
}  

a:hover,  
a:active {  
  color: orange;  
}  

Last update : August 14, 2023
Created : August 23, 2022

Comments

Comments