By default, when Radio Buttons are placed on a page, the label is set next to the radio button. How is it possible to place the labels above the radio button?
This is the CSS:
label {
float: left;
padding: 0 1em;
text-align: center;
}
This is the HTML:
<label for="myChoice1">Choice 1<br />
<input type="radio" id="myChoice1" name="myChoice" value="1" />
</label>