Possible Duplicate:
Radio buttons and label to display in same line
I have 3 labels and radiobuttons that i want to put on 1 line:
What i get now is this:
Spoortoegang
Uit
radiobutton
Aan
radiobutton
What i want is:
Spoortoegang Uit radiobutton Aan radiobutton
My code for this is:
<div ><p>Spoortoegang</p><label for="no">Uit;<input dojoType="dijit.form.RadioButton" id="valSR" name="group1" checked="checked" onchange='POI(this);' value="Show" type="radio"/> </label>
<label for="yes">Aan;<input dojoType="dijit.form.RadioButton" id="valSlope" name="group1" value="Hide" onchange='POI(this)' type="radio"/></label></div>