JSFiddle - React, Tailwind, and code Playground
by calder12
HTML
<div class="job_classifications">
<div class="classification x_location">
<div class="class_type">Location</div>
<div id="location" class="class_value"> London</div>
</div>
<div class="classification refno">
<div class="class_type">Ref No</div>
<div class="class_value">80</div>
</div>
</div>
CSS
.class_type{
float:left;
font-weight:bold;
background-color:#DDD;
width:125px;
}
.class_value{
float:left;
background-color:#FFF;
width:125px;
}
.job_classifications{width:250px;}