JSFiddle - React, Tailwind, and code Playground

HTML

<table> 
        <tr> 
            <td></td> 
            <td></td> 
        </tr> 
 
        <tr> 
            <td></td> 
            <td></td> 
        </tr> 
 
        <tr> 
            <td></td> 
            <td></td> 
        </tr> 
        
    </table>

CSS

table{
border:0px;
border-spacing:0px;
}

td{
width:140px;
height:104px;
background:url(http://alpatriott.ru/works/primer/images/5.png) no-repeat;
}

td:hover{
background:#ccc;
}

img{
display:block;
}