JSFiddle - React, Tailwind, and code Playground

HTML

<!-- images in element with text-overflow:ellipsis -->
<div style="width: 100px; border: 2px solid red; overflow: hidden; text-overflow:ellipsis;">
    <img src="http://demos.telerik.com/aspnet-mvc/Content/Images/telerik-logo.png" style="width: 300px" />
</div>


<!-- another one: div with inline-block -->
<div style="width: 100px; border: 2px solid red; overflow: hidden; text-overflow:ellipsis;">
    <div style="width: 200px; height: 10px; display: inline-block; background: green"></div>
</div>