In the scenario where I have the following HTML and CSS code:
.something{
width: 200px;
}
.display-block {
display: block;
}
.req-field{
float: right;
font-size: 5px;
}
<div class="something">
<span class="display-block">First name:<span class="req-field">required</span></span></div>
It is apparent that the 'required' text is floating higher than 'first name'. If the goal is to make the 'required' text align to the bottom of the display-block span, adjustments are needed.