JSFiddle - React, Tailwind, and code Playground
HTML
<form class="h-searchform">
<p class="h-title">Search</p>
<input type="text" class="h-searchform-text"/>
<input type="submit" value=">" class="h-searchform-button h-title"/>
</form>
CSS
body {
background-color: lightblue;
}
input {
vertical-align: middle;
}
.h-searchform {
position: relative;
width: 229px;
}
.h-title {
font: bold 16px/40px "Trebuchet MS";
color: #FFF;
}
.h-searchform-text {
width: 173px;
height: 29px;
padding: 0;
background-color: #1340bd;
border: 0;
margin: 0 12px 0 0;
font: 11px/22px "Trebuchet MS";
color: #FFF;
}
.h-searchform-button {
width: 30px;
height: 29px;
padding: 0;
margin: 0;
line-height: 27px;
background-color: #9c0000;
border-top: 1px solid #b20000;
border-right: 1px solid #6d0000;
border-left: 1px solid #7d0000;
border-bottom: 1px solid #640000;
}