JSFiddle - React, Tailwind, and code Playground

by kylewlacy

HTML

<div id="footer">
    <div class="content">
        <ul>
            <li class="Footerbullets"><a href="http://google.com">Link with Hover Color Change</a></li>
        </ul>
        <div class="clear"></div>
    </div>
</div>

JavaScript

.Footerbullets{
    padding: 3px 0 3px 25px;
    // background-image: url(../images/menubar/footer_bullet.jpg);
    background-repeat: no-repeat;
}

a {
    color: #F00;
}

a:hover {
    color: #00F;
}
    
a:visited {
    color: #0F0;
}