The alignment of the inline-block text baseline seems off.
Is there a way to place the radical at the bottom of the inline-block instead of aligning it with the text baseline?
Existing Code Section
.parent {
height: 200px;
}
.radical {
border: 1px solid #000;
display: inline-block;
vertical-align: bottom;
}
.radicalData {
height: 200px;
}
<div class="parent">
<span class="radical">√</span>
<span class="radical">hello</span>
<span class="radicalData"></span>
</div>