JSFiddle - React, Tailwind, and code Playground

by George Batt

HTML

<div class="client-wrapper ">
    <ul class="happy-clients clearfix ">
        <li></li>
    </ul>
</div>

CSS

.happy-clients li {
    height: 42px;
    width: 42px;
    background-image: url(http://img826.imageshack.us/img826/6568/homebi.png);
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: top;
    list-style:none;
    padding:0;
}
.happy-clients li:hover {
    background-position: bottom;
}