I have a bunch of radio buttons, and I have a
<br/>
after each one and they all seem to horizontal align center (even if I put some CSS that says left align).
Here is the CSS,
.radioLeft
{
text-align:left;
}
Here is the HTML:
<input checked="checked" class="radioLeft" name="CalendarType" value="1" type="radio"><b>Person </b>(False) <br>
<input checked="checked" class="radioLeft" name="CalendarType" value="2" type="radio"><b>Event </b>(False) <br>
<input checked="checked" class="radioLeft" name="CalendarType" value="3" type="radio"><b>Release</b>(False) <br>
<table>? :-) – paxdiablo Dec 16 '10 at 5:10text-align: center, so you'll probably have to reset that. – theazureshadow Dec 16 '10 at 5:15