You are trying to add a CSS property that applies only to block level elements (such as a div ) to an inline element ( input ). This will not work; you need to create a block level element (I decided to use a label and make it a block level using CSS, but this is only for semantics) and use it to place each label.
Try wrapping each in a label with a .radioLeft class, remove this class from the inputs, and then add this CSS:
.radioLeft { display: block; text-align: left; }
For instance,
<label class="radioLeft"><input type="radio"><b>Person</b>(False)</label>
source share