JSFiddle - React, Tailwind, and code Playground

HTML

<div class="container">
	<div class="link">Link 1</div>
	<div class="link">Link 2</div>
	<div class="link">Longer Link</div>
	<div class="link cart"><img src="http://i.imgur.com/QM39GPo.png" alt="cart"></div>
</div>

CSS

.container {
    width:100%;
    border:1px solid black;
    max-width:400px; /*Just for the demo*/
    height:26px;
}
.link {
    background:#CCCCCC; /*Just for the demo*/
    float:left;
    margin-right:18.5%;
    line-height:26px;
    height:26px;
}
.link.cart {
    margin-right:0px;
}