JSFiddle - React, Tailwind, and code Playground

by djdiego88

HTML

<h2><a href="#" title="Texto del enlace que se desvanece">Texto del enlace que se desvanece</a></h2>

CSS

h2 {
    font-size:24px;
    font-weight:bold;
    color: #262626;
    opacity: 1.0;
    -webkit-transition: opacity 0.4s linear;
}

h2 a {
    color: #262626;
}

h2:hover {
    opacity: 0.7;
}