JSFiddle - React, Tailwind, and code Playground

HTML

<a href="#">Я ссылка с плавно изменяющимся при наведении цветом, но если ты пользуешься 17ым Хромом, то я смогу показать красоту только до щелка по мне :(</a>

CSS

a{
    -webkit-transition: color 2000ms;
    -moz-transition: color 2000ms;
    -o-transition: color 2000ms;
    transition: color 2000ms;
    color: blue
}
a:hover{
    color: red;
}
a:active {
    color: red;
        -webkit-transition: color 2000ms;
    -moz-transition: color 2000ms;
    -o-transition: color 2000ms;
    transition: color 2000ms;
}
a:target {
        -webkit-transition: color 2000ms;
    -moz-transition: color 2000ms;
    -o-transition: color 2000ms;
    transition: color 2000ms;
}