Why my labels and radio buttons won't stay in the same line, what can I do ?

Here is my form:

<form name="submit" id="submit" action="#" method="post">
            <?php echo form_hidden('what', 'item-'.$identifier);?>

            <label for="one">First Item</label>
            <input type="radio" id="one" name="first_item" value="1" />

            <label for="two">Second Item</label>
            <input type="radio" id="two" name="first_item" value="2" />             <input class="submit_form" name="submit" type="submit" value="Choose" tabindex="4" />
            </form>
link|improve this question

1  
Could you show the whole page and the corresponding css? If you put only the snippet you provided in the body of an HTML page everything will be on the same line so there must be some css rule that prevents this. – Darin Dimitrov Feb 21 '10 at 14:15
Which XHTML schema are you using? – Emre Yazıcı Feb 21 '10 at 14:15
@Darin Dimitrov I have a large css files to be posting here wouldn't be a good idea, what should I look for inside of the(have multiple style sheets) or how can I style this one seperatly? – Gandalf StormCrow Feb 21 '10 at 14:17
@eyazici <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">; <html xmlns="w3.org/1999/xhtml">; – Gandalf StormCrow Feb 21 '10 at 14:18
Try on CSS input[type=radio], .radio { display: inline; } For IE, you'll have to add on <input class="radio" /> since IE doesn't follow the other CSS notion. – The Elite Gentleman Feb 21 '10 at 15:00
show 2 more comments
feedback

10 Answers

up vote 6 down vote accepted
+50

If you use the HTML structure I lay out over in this link you can simply float your label and input to the left and adjust padding/margin until things are lined up.

And yes, you'll want to make your radio button have a class name for old IE. And to have all of them on the same line, according to the markup I linked to above, it would be like so:

<fieldset>
  <div class="some-class">
    <label for="x">Thing 1</label>
    <input type="radio" class="radio" name="x" value="y" id="y" />
    <label for="z">Thing 2</label>
    <input type="radio" class="radio" name="x" value="z" id="z" />
  </div>
</fieldset>

means your starter CSS would be something like:

fieldset { overflow:hidden }
.some-class { float:left; clear:none; }
label { float:left; clear:none; display:block; padding: 2px 1em 0 0; }
input[type=radio], input.radio { float:left; clear:none; margin: 2px 0 0 2px; }
link|improve this answer
2  
(I'd suggest actually switching around, with labels after the radio buttons, but that's your call.) – D_N Feb 28 '10 at 10:57
<label for="x">Thing 1</label> should be <label for="y">Thing 1</label> – podeig Mar 15 at 13:56
@D_N, can you please fix the label for attribute, I tried but my edit was less than 6 chars so I could not submit. – iancrowther Apr 2 at 12:46
feedback

Put them both to display:inline.

link|improve this answer
feedback

Hmm. By default, <label> is display: inline; and <input> is (roughly, at least) display: inline-block;, so they should both be on the same line.

Perhaps a stylesheet is setting label or input to display: block?

link|improve this answer
feedback

you might have a width specified for your input tags somewhere in your css.

add a class="radio" to your radio boxes and an input.radio {width: auto;} to your css.

link|improve this answer
feedback

I wasn't able to reproduce your problem in Google Chrome 4.0, IE8, or Firefox 3.5 using that code. The label and radio button stayed on the same line.

Try putting them both inside a <p> tag, or set the radio button to be inline like The Elite Gentleman suggested.

link|improve this answer
feedback

I use this code and works just fine:

input[type="checkbox"], 
input[type="radio"],
input.radio,
input.checkbox {
    vertical-align:text-top;
    width:13px;
    height:13px;
    padding:0;
    margin:0;
    position:relative;
    overflow:hidden;
    top:2px;
}

You may want to readjust top value (depends on your line-height). If you don't want IE6 compatibility, you just need to put this code into your page. Otherwise, you will must add extra class to your inputs (you can use jQuery - or any other library - for that tho ;) )

link|improve this answer
feedback

If the problem is that the label and input are wrapping to two lines when the window is too narrow, remove the whitespace between them; e.g.:

<label for="one">First Item</label><input type="radio" id="one" name="first_item" value="1" />

If you need space between the elements, use non-breaking spaces (&nbsp;) or CSS.

link|improve this answer
feedback

What I've always done is just wrap the radio button inside the label...

<label for="one">
<input type="radio" id="one" name="first_item" value="1" />
First Item
</label>

Something like that, has always worked for me.

link|improve this answer
That won't work by itself, there's nothing stopping the words inside the label from being split on different lines. You'd need to make the label display:block or white-space:nowrap. Also, I'm not sure it's semantically correct to have the input inside the label. – Tom Mar 4 '10 at 3:13
feedback

I'm assuming the problem is that they are wrapping onto separate lines when the window is too narrow. As others have pointed out, by default the label and input should be "display:inline;", so unless you have other style rules that are changing this, they should render on the same line if there is room.

Without changing the markup, there will be no way to fix this using only CSS.

The simplest way to fix it would be to wrap the radio button and label in a block element, such as a p or a div, and then prevent that from wrapping by using white-space:nowrap. For example:

<div style="white-space:nowrap;">
  <label for="one">First Item</label>
  <input type="radio" id="one" name="first_item" value="1" />
</div>
link|improve this answer
feedback

My answer from a different post on the same subject should help you zend form for multicheckbox remove input from labels

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.