javascript - How to Remove Spacing between HTML Component and LAbel -


i have 2 radio buttons shown

container.insert('<input type="radio" name="sex" value="date range"/> date range'); container.insert('<input type="radio" name="sex" value="duration"/> duration '); 

the issue , space being inserted between radio buton , label

please see output here

http://www.tiikoni.com/tis/view/?id=924d1b7

as can see , space being inserted between radio button , label date range

you should fix css, maybe should fix things right away:

<span><input type="radio" name="sex" id="duration" value="duration"/> <label for="duration">duration</label></span> 

it sets text label radio button, can click text change it, easier targeting small radio button. don't forget add "id" input


Comments

Popular posts from this blog

c# - how to write client side events functions for the combobox items -

exception - Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found -