Need help aligning form with CSS

Sevaron

New Member
Hey I have a very simply question but I am not quite sure how to achieve this without using HTML tables. Basically what I want is the label to to be on the left with 3 radio button to its right. The thing is, I want each individual radio button to be aligned vertically.For example:Label - choice 1
..........- choice 2
..........- choice 3The HTML structure I am using is as follows:\[code\]<label for="radio1">Label</label><input type="radio" name="radio1"> <span class="form-span">Option 1</span><input type="radio" name="radio1"> <span class="form-span">Option 2</span><input type="radio" name="radio1"> <span class="form-span">Option 3</span>\[/code\]Can anyone help me to align the form properly?Thanks :)
 
Back
Top