JSFiddle - React, Tailwind, and code Playground

HTML

<div class="lined">
    <div class="table">
        <div class="row fixed">
            <img src="http://i.imgur.com/AKmmXE4.gif" />
        </div>
        <div class="row fluid">Hello, I'm Mickey!</div>
    </div>
    <div class="table">
        <div class="row fixed">
            <img src="http://i.imgur.com/f6948mH.gif" />
        </div>
        <div class="row fluid">I'm Goofy!</div>
    </div>
    <div class="table">
        <div class="row fixed">
            <img src="http://i.imgur.com/Dm2vlrA.gif" />
        </div>
        <div class="row fluid">I'm Donald Duck!</div>
    </div>
    <div class="table">
        <div class="row fixed">
            <img src="http://i.imgur.com/vRggi12.gif" />
        </div>
        <div class="row fluid">Whoof!</div>
    </div>
</div>

CSS

.table {
    display:table;
    height:50px;
}
.lined {
    background:linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 32px, #DADADA 32px, #DADADA 38px, rgba(255, 255, 255, 0) 38px, rgba(255, 255, 255, 0));

}
img {
    vertical-align:top;
}
.row {
    display:table-cell;
}
.row.fluid {
    width:100%;
}
/* just styling */
 .table {
    font-family: sans-serif;
    margin: 20px 0
}
.row {
    vertical-align: middle;
    padding:0 10px;
}
.row.fluid {
    background: #f4f4f4;
    border-radius: 5px;
}