Reputation: 31709
I have this page.
If <input>
is and inline element why goes down the second radio button (Chico) ??
Regards
Javi
Upvotes: 2
Views: 182
Reputation: 73102
Try setting display:inline
on your li
elements (the containers for your radio buttons).
Upvotes: 1
Reputation: 8540
Try left floating the unordered list containing the radio buttons:-
ul.radio_list { float: left; }
Upvotes: 0