I need the red border to be snugly wrapped around the blue text (no whitespace). What is causing the extra space and how can I eliminate it?
#propertyDetails .display_address {
font-size: 1.75rem;
font-weight: bold;
color: #3498db;
margin:0px;
padding:0px;
border: 1px solid red;
}
<div id="propertyDetails">
<div class="display_address">Test Address</div>
</div>