JSFiddle - React, Tailwind, and code Playground

by J. Albert Bowden

HTML

<div class="mainHeader">
<div id="buttons">
<a href="#" class="myButton">New Customer</a>
<a href="#" class="myButton2">Sign In</a>
<input type="text" />
<a href="#" class="myButton3">Go</a>
</div>
</div>

CSS

.mainHeader
{
    background: #b2b2b2;
    height:60%;
    margin-top:0px;
    width:100%;
}
#buttons{outline:1px solid #000; width:250px; float:right; margin-right:1em}
#buttons a{float:right; width:49%}
#buttons input{float:left; width:47%}
#buttons input,#buttons .myButton{margin-right:5px}