JSFiddle - React, Tailwind, and code Playground

by Alexandros Spyropoulos

HTML

<a href="https://www.facebook.com/ecthephotographer" class="social-btn facebook" >
    <img alt="Follow me on Facebook" class="social-icon" id="fb"/>
</a>

CSS

.social-btn .social-icon{
    height:100px;
    width:100px;
    background-size:100px 100px;
	background-repeat:no-repeat;
}

.social-btn.facebook .social-icon {   
    background-image:url('http://i58.tinypic.com/2j0yqfn.jpg');	
}

.social-btn.facebook .social-icon:hover {
    background-image:url('http://i62.tinypic.com/2guywih.jpg');
}