Hi,
Unable to align both the radio buttons and label beside it together. Getting some extra space which makes the look of the page not good. Please help me.
My Pen is at Survey Form
Hi,
Unable to align both the radio buttons and label beside it together. Getting some extra space which makes the look of the page not good. Please help me.
My Pen is at Survey Form
Your input[type="radio"]
is inheriting the width 40% you had set for input
.
Reset it by doing:
input[type="radio"] {
width: auto;
}
Thanks buddy it worked.
Is there any improvements should I work in that form. Appreciate your response.