The alignment of text on my website is causing some spacing issues that I can't quite seem to resolve:
It's an asp.net page, and I've attempted a couple of potential solutions:
CSS
.optionClosed
{
font-size: large;
font-weight:bold;
color:#004C7E;
}
HTML
<table border="0px" width="50%" style="float:left; display:inline-table;" >
<tr id="optCloseMessage" runat="server" align="justify" style="display:none;">
<td>
<span class="optionClosed"> An option has already been selected for this month. If you would like to make further changes to your account, please cancel your pending option</span>
</td>
</tr>
</table>
I've also experimented with replacing <span>
with a <p>
tag, as well as eliminating tags altogether and using only <td class="optionClosed">
Any suggestions on how to fix the spacing issue or any insights into what may be misconfigured? Thanks.