tirenweb
tirenweb

Reputation: 31709

CSS: question about radio button

I have this page.

If <input> is and inline element why goes down the second radio button (Chico) ??

Regards

Javi

Upvotes: 2

Views: 182

Answers (2)

RPM1984
RPM1984

Reputation: 73102

Try setting display:inline on your li elements (the containers for your radio buttons).

Upvotes: 1

drmonkeyninja
drmonkeyninja

Reputation: 8540

Try left floating the unordered list containing the radio buttons:-

ul.radio_list { float: left; }

Upvotes: 0

Related Questions