JSFiddle - React, Tailwind, and code Playground
HTML
<html>
<body>
<div class="images">
<img src="http://redroomfoto.ru/images/cms/data/studio1.jpg" alt="" />
<img src="http://redroomfoto.ru/images/cms/data/studio2.jpg" alt=""/>
<img src="http://redroomfoto.ru/images/cms/data/studio3.jpg" alt=""/>
</div>
</body>
</html>
CSS
html, body {
height: 100%;
}
.images {
white-space: nowrap;
font-size: 0;
height: 60%;
}
.images img {
display: inline-block;
height: 100%;
font-size: 12px;
}