JSFiddle - React, Tailwind, and code Playground

by kylewlacy

HTML

<div id="footer">
    <div class="content">
        <ul>
           <li class="Footerbullets"><a href="#">Link with Hover Color Change</a></li>
        </ul>
        <div class="clear"></div>
    </div>
</div>

CSS

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

.Footerbullets a {
    color: #00F;
}

.Footerbullets a:link {
    color: #F00;
}

.Footerbullets a:hover {
    color: #0F0;
}

.Footerbullets a:visited {
    color:#00F;
}

.Footerbullets a:active {
    color: #FF0;
}