JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<a href="#" class="smallthumb">
<img src="http://dl.dropbox.com/u/28152917/temp/child_01.jpg">
Текст
</a>
<a href="#">
<img src="http://dl.dropbox.com/u/28152917/temp/child_01.jpg">
Текст
</a>
<a href="#">
<img src="http://dl.dropbox.com/u/28152917/temp/child_01.jpg">
Текст
</a>
</div>
CSS
div {
width: 667px;
}
a {
float: left;
text-align: center;
font-size:24px;
color:#FF6700;
text-decoration: none;
width:150px;
height:150px;
border:1px solid #e3e3e3;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
behavior: url(PIE.htc);
}
a + a {
margin-left: 105px;
}
img {
display: block;
margin: 12px auto 10px;
width: 100px;
height: 83px;
border: 0;
}
.smallthumb img {
width: 55px;
height: 55px;
margin-top: 27px;
}
a:hover {
color:#00BAEF;
border-color:#00BAEF;
}