Hi,
I have a set 6 sets of 5 radio buttons. I would prefer to have each set in a row of 5 buttons but, can you tell me what best practice would be for spreading them out?
I don't want confusion to creep in where a button is equidistant between 1 and 2 for example. I have used to make it layout more clearly but I am not sure that is the correct/best way.
Should I, instead, be adding padding to the right of the radio buttons?
Code:
<fieldset>
<legend>Welcome</legend>
1 <input type='radio' name="Welcome" />
2 <input type='radio' name="Welcome" />
3 <input type='radio' name="Welcome" />
4 <input type='radio' name="Welcome" />
5 <input type='radio' name="Welcome" />
</fieldset>
bazz