JSFiddle - React, Tailwind, and code Playground

HTML

<div class="container">
    <div class="title">
        Test
    </div>
    <div class="buttons">
        <div></div>
        <div></div>
        <div></div>
    </div>
</div>

CSS

.container {
    background: #AAA;
    display: table;
    height: 30px;
    table-layout: fixed;
    white-space: nowrap;
    width: 640px;
}
.container > div {
    display: table-cell;
    vertical-align: middle;
}
.title {
    overflow: hidden;
    text-indent: 15px;
	text-overflow: ellipsis;
}
.buttons {
    background: #777;
}
.buttons div {
    background: green;
    display: inline-block;
    height: 25px;
    margin: 0 5px;
    vertical-align: top;
    width: 25px;
}