JSFiddle - React, Tailwind, and code Playground

HTML

<div class="addressdiv"><fieldset id="addressFieldset"><legend>Customer Address</legend><div id=""><label for="_line1_id">Building/Plot # and Street </label><div class="box" id="">mp nagar</div></div><br><div id=""><label for="_line2_id">Landmark/Suburb </label><div class="box" id="">
    
    
    
 </div></div><br><div id=""><label for="_country_id">Country</label><div class="box" id="">India</div></div><br><div id=""><label for="_state_id">State</label><div class="box" id="">Andhra Pradesh</div></div><br><div id=""><label for="_city_id">City </label><div class="box" id="">bhopal</div></div><br><div id=""><label for="_zipcode_id">ZIP/PIN Code </label><div class="box" id="">945674</div></div><br></fieldset></div>

CSS

.addressdiv, .contactdiv {
    float: left;
width: 100%;
height: 250px;
}


fieldset {
padding: 20px 10px;
margin: 20px 0px;
border-color: #CCC;
}


fieldset legend {
font-family: tahoma,verdana,arial,sans-serif;
font-weight: bold;
font-size: 12px;
color: black;
}


div {
line-height: normal;
font: inherit;
color: inherit;
}


fieldset label {
width: 188px;
float: left;
margin-left: 5px;
margin-top: 0px;
font-weight: bold;
color: #333;
font-family: tahoma,verdana,arial,sans-serif;
font-size: 12px;
}

body {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #555454;
font-weight: normal;
}