JSFiddle - React, Tailwind, and code Playground

HTML

<div class="imgcenter">
	<div class="oneimg">
		<a href="/course/1">
			<img src="https://pp.vk.me/c402927/v402927356/3ab/8wFPe9AWpnk.jpg"/>
			<h3>Курс 14</h3>
		</a>
	</div>
    <div class="oneimg">
            <a href="/course/1">
                <img src="https://pp.vk.me/c402927/v402927356/3ab/8wFPe9AWpnk.jpg">
                <h3>Курс 14</h3>
            </a>
        </div>
        <div style="clear:both;" id="del"></div>
</div>

CSS

body {
    text-align: center;
}
.imgcenter{
    display:inline-block; /* старые IE */
    display:inline-flex; /* взрослые */
	}
.oneimg {
  text-align: center;
  width: 133px;
  float: left;
  margin: 1%;
  position: relative;
}
.oneimg img {
  width: 100%;
}