JSFiddle - React, Tailwind, and code Playground
HTML
<a href="#" class="item2">
<img src="http://91.189.93.3/wp-content/uploads/2011/04/gimp.png">
<span>Поросенок Ниф-Ниф</span>
</a>
<a href="#" class="item2">
<img src="http://91.189.93.3/wp-content/uploads/2011/04/shotwell.png">
<span>Поросенок Нуф-Нуф</span>
</a>
<a href="#" class="item2">
<img src="http://91.189.93.3/wp-content/uploads/2011/04/tomboy1.png">
<span>Поросенок Наф-Наф</span>
</a>
<a href="#" class="item2">
<img src="http://91.189.93.3/wp-content/uploads/2011/04/rhythmbox.png">
<span>Серый волк</span>
</a>
CSS
a.item2 {
display: table;
width: 100%;
font: Menu;
color:MenuText;
text-decoration:none;
}
a.item2:hover {
background-color:#faeece;
}
a.item2 span {
display: table-cell;
vertical-align:middle;
width:100%;
}
a.item2 img {
display: table-cell;
height: 36px;
margin: 2px 5px;
}