JSFiddle - React, Tailwind, and code Playground

HTML

<div id="container">
    <div id="previous">previous</div>
    <div id="next">next</div>
</div>

CSS

#container {
    width:300px;
    height:70px;
    border:1px solid black;
    text-align:right;
}

#previous {
    width:70px;
    height:70px;
    background:gold;
    display:inline-block;
}

#next {
    width:70px;
    height:70px;
    background:lightblue;
    display:inline-block;
}