Answers for "comment changer liens quand survolé html"

CSS
0

comment changer liens quand survolé html

a {
    -webkit-transition: color 2s;
    transition: color 2s;
}
a:hover {
    color: green;
}
Posted by: Guest on January-31-2021

Code answers related to "comment changer liens quand survolé html"

Browse Popular Code Answers by Language