I have a a bunch of radio button & labels as following:
<input type="radio" id="FID3626" name="Discipline" value="Yes" class="" title="" data-test="test">
<label for="">Yes </label>
<input type="radio" id="FID3626" name="Discipline" value="No" class="" title="" data-test="test">
<label for="">No </label>
<input type="radio" id="FID3626" name="Discipline" value="May be" class="" title="" data-test="test">
<label for="">May be </label>
<input type="radio" id="FID3626" name="Discipline" value="Option A" class="" title="" data-test="test">
<label for="">Option A </label>
<input type="radio" id="FID3626" name="Discipline" value="Option B" class="" title="" data-test="test">
<label for="">Option B </label>
<input type="radio" id="FID3626" name="Discipline" value="Option C" class="" title="" data-test="test">
<label for="">Option C </label>
<input type="radio" id="FID3626" name="Discipline" value="Option D" class="" title="" data-test="test">
<label for="">Option D </label>
<input type="radio" id="FID3626" name="Discipline" value="Option E" class="" title="" data-test="test">
<label for="">Option E </label>
And these are generated from metadata. After rendering, these appear in one line, which is normal.
I need each of the label & its radio in one line. I need to this using CSS. For some reason i cannot keep the input & label under one div.
Thanks in advance.
..right?