I have a following div
with an image, title, and some options. See:
.truncate {
font-size: 12px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
<div class="item thumb">
<div class="thumbnail"><img src="../img/img.png" />
<div class="caption truncate" style="width: 100px">
<span>Negreiros supermercados</span>
</div>
<button type="button" class="btn btn-link btn-xs">5 lojas</button>
</div>
</div>