I need to center text vertically and horizontally. Is there a simple way to do this for the following code?
<div style="display: block; height: 25px;">
<span id="ctl_txt" style="background-color: rgb(255, 0, 0);">
Basic
</span>
</div>
You can use the
text-alignproperty to center the text horizontally, andline-heightequal to the div height to center inline elements vertically.Example here.