vote up 28 vote down star
33

This is one of the minor CSS problems that plagues me constantly. How do folks around StackOverflow vertically align checkboxes and their labels consistently cross-browser? Whenever I align them right in Safari (usually using vertical-align: baseline on the input), they're completely off in Firefox and IE. Fix it in Firefox, and Safari and IE are inevitably messed up. I waste time on this every time I code a form.

Here's the standard code that I work with:

<form>
    <div>
        <label><input type="checkbox" /> Label text</label>
    </div>
</form>

I usually use Eric Meyer's reset, so form elements are relatively clean of overrides. Looking forward to any tips or tricks that you have to offer!

flag

12 Answers

vote up 28 vote down check

After over an hour of tweaking, testing, and trying different styles of markup, I think I may have a decent solution. The requirements for this particular project were:

  1. Inputs must be on their own line
  2. Checkbox inputs need to align vertically with the label text similarly (if not identically) across all browsers
  3. If the label text wraps, it needs to be indented (so no wrapping down underneath the checkbox)

Before I get into any explanation, I'll just give you the code:

<form>
    <div>
        <label><input type="checkbox" /> Label text</label>
    </div>
</form>

<style type="text/css">
label {
    display: block;
    padding-left: 15px;
    text-indent: -15px;
}
input {
    width: 13px;
    height: 13px;
    padding: 0;
    margin:0;
    vertical-align: bottom;
    position: relative;
    top: -1px;
    *overflow: hidden;
}
</style>

This code assumes that you're using a reset like Eric Meyer's that doesn't override form input margins and padding (hence putting margin and padding resets in the input CSS). Obviously in a live environment you'll probably be nesting/overriding stuff to support other input elements, but I wanted to keep things simple.

Things to note:

  • The *overflow declaration is an inline IE hack (the star-property hack). Both IE 6 and 7 will notice it, but Safari and Firefox will properly ignore it. I think it might be valid CSS, but you're still better off with conditional comments; just used it for simplicity.
  • As best I can tell, the only vertical-align statement that was consistent across browsers was vertical-align: bottom. Setting this and then relatively positioning upwards behaved almost identically in Safari, Firefox and IE with only a pixel or two of discrepancy.
  • The major problem in working with alignment is that IE sticks a bunch of mysterious space around input elements. It isn't padding or margin, and it's damned persistent. Setting a width and height on the checkbox and then overflow: hidden for some reason cuts off the extra space and allows IE's positioning to act very similarly to Safari and Firefox.
  • Depending on your text sizing, you'll no doubt need to adjust the relative positioning, width, height, and so forth to get things looking right.

Hope this helps someone else! I haven't tried this specific technique on any projects other than the one I was working on this morning, so definitely pipe up if you find something that works more consistently.

link|flag
1  
note. You should probably put a "for" attribute on your label, to ensure it works for all browsers and text readers. ( I realize you probably left it off for simplicity) – Atomiton Nov 26 '08 at 21:34
6  
Good grief, I hadn't realized how many people were ignorant of this: if you are wrapping the input in the label tag, the "for" attribute is unnecessary. Feel free to see for yourself: w3.org/TR/html401/… – One Crayon Nov 28 '08 at 17:33
Wow, I plead guilty here as well. Labels surrounding input controls FTW! Going to do this from now on... – cowgod Jan 30 at 14:50
I disagree with the suggestion about using conditional comments. Keep the *foobar CSS hack. That works well, is used by frameworks like YUI, and allows you to keep together what belongs together. – ebruchez Jan 30 at 17:54
I've seen issues with IE when wrapping the input with the label. Like, clicks on either the label or the input don't cause a cursor. ymmv... – gms8994 Jan 30 at 20:16
show 4 more comments
vote up 8 vote down

Sometimes vertical-align needs two inline (span, label, input, etc...) elements next to each other to work properly. The following checkboxes are properly vertically centered in IE, Safari, FF, and Chrome, even if the text size is very small or large.

They all float next to each other on the same line, but the nowrap means that the whole label text always stays next to the checkbox.

The downside is the extra meaningless SPAN tags.

<style type="text/css">
.checkboxes label
{
    display: block;
    float: left;
    padding-right: 10px;
    white-space: nowrap;
}

.checkboxes input
{
    vertical-align: middle;
}

.checkboxes label span
{
    vertical-align: middle;
}
</style>

<form>
    <div class="checkboxes">
        <label for="x"><input type="checkbox" id="x" /> <span>Label text x</span></label>
        <label for="y"><input type="checkbox" id="y" /> <span>Label text y</span></label>
        <label for="z"><input type="checkbox" id="z" /> <span>Label text z</span></label>
    </div>
</form>

Now, if you had a very long label text that needed to wrap without wrapping under the checkbox, you'd use padding and negative text indent on the label elements:

.checkboxes label
{
    display: block;
    float: left;
    padding-right: 10px;
    padding-left: 22px;
    text-indent: -22px;
}
link|flag
vote up 5 vote down

I've never had a problem with doing it like this:

<form>
  <div>
    <input type="checkbox" id="cb" /> <label for="cb">Label text</label>
  </div>
</form>
link|flag
As I've said to previous posters who recommended that: I don't like it because it requires unnecessary markup. Also, I tried that markup but it was difficult to prevent the label from wrapping beneath the input (while still having label/input group each on their own lines). – One Crayon Nov 20 '08 at 19:56
1  
So, instead of "unecessary" markup (used by probably almost everyone), you'd rather have unecessary CSS? – Robert C. Barth Jan 30 at 6:49
The problem with wrapping stands. But in general, yes I'd rather have extraneous CSS than markup since the CSS is cached, but the markup may have to be loaded anew for every new page. – One Crayon Jan 31 at 3:49
vote up 5 vote down

try vertical-align: middle

also your code seems like it should be:

<form>
    <div>
        <input id="blah" type="checkbox" /><label for="blah">Label text</label>
    </div>
</form>
link|flag
<label for="blah"> is only necessary if you're using something where it doesn't make sense for the label to wrap (like a textbox; I'll generally use <label for="blah">Foo</label><input id="blah" type="text" /> in that instance). With checkboxes I find it's less markup to wrap it. – One Crayon Nov 20 '08 at 18:13
2  
Not exactly true: The Label-for will allow users to click the label in order to check the checkbox, in addition to simply clicking the checkbox itself. It's quite handy for tying the two elements together. – EndangeredMassa Nov 20 '08 at 18:30
If an input is nested inside a label, then clicking the label with activate/give focus to the input; the for attribute is solely for the case when the input is not nested. – One Crayon Nov 20 '08 at 18:34
That's true One Crayon, but it's still good practice to use the "for" attribute, or you will have problems with some browsers that don't recognize this syntax cough IE. – Atomiton Nov 26 '08 at 21:33
if you don't want your checkbox to have an ID then you need to wrap the checkbox inside the label – Simon Jan 30 at 12:02
show 1 more comment
vote up 4 vote down

Try my solution, I tried it in IE 6, FF2 and Chrome and it renders pixel by pixel in all the three browsers.

<style type="text/css">
*
{
    padding: 0px;
    margin: 0px;
}
#wb
{
    width: 15px;
    height: 15px;
    float: left;
}
#somelabel
{
    float: left;
    padding-left: 3px;
}
</style>

<div>
<input id="wb" type="checkbox" /><label for="wb" id="somelabel">Web Browser</label>
</div>
link|flag
Interesting; I like the idea of floating both elements; that elegantly fixes the wrapping issue. I am attached to wrapping input with label, but that code is a heck of a lot cleaner than the solution I arrived at. – One Crayon Jan 31 at 3:54
in this example the checkbox input and label should be also have property display: block and in such case they will be treated as normal DIV's that can be aligned easily – se_pavel Apr 17 at 7:27
vote up 3 vote down

I usually use line height in order to adjust the vertical position of my static text:

<form>
   <div>
      <label><input type="checkbox" /> Label text</label>
   </div>
</form>

<style type="text/css">
label {
   line-height: 18px;
}
input {
   width: 13px;
   height: 18px;
   font-size: 12px;
   line-height: 12px;
}
</style>

Hope that helps.

link|flag
vote up 2 vote down

This works well for me:

fieldset{text-align:left;border:none}
  fieldset ol,fieldset ul{padding:0;list-style:none}
    fieldset li{padding-bottom:1.5em;float:none;clear:left}
      label{float:left;width:7em;margin-right:1em}
    fieldset.checkboxes li{clear:both;padding:.75em}  
      fieldset.checkboxes label{margin:0 0 0 1em;width:20em}
      fieldset.checkboxes input{float:left}

<form>

  <fieldset class="checkboxes">

    <ul>
      <li>
        <input type="checkbox" name="happy" value="yep" id="happy"/>
        <label for="happy">Happy?</label>
      </li>
      <li>
        <input type="checkbox" name="hungry" value="yep" id="hungry"/>
        <label for="hungry">Hungry?</label>
      </li>
    </ul>

  </fieldset>

</form>
link|flag
bless you for using ems instead of pxs. – IDisposable Jan 31 at 6:45
vote up 1 vote down

working off of One Crayon's solution, I have something that works for me and is simpler:

  input[type=checkbox], input[type=radio] {
    vertical-align: middle;
    position: relative;
    bottom: 1px;
  }
  input[type=radio] {
    bottom: 2px;
  }

renders pixel-for-pixel the same in safari (whose baseline I trust) and both firefox and IE7 check out as good. it also works for various label font sizes, big and small. now, for fixing IE's baseline on selects and inputs.....

link|flag
Just a note for others: this won't work in IE6 because it doesn't support the [type=checkbox] CSS targeting. – One Crayon Apr 8 at 0:18
vote up 1 vote down

Just wanted to add to the discussion about the 'for' attribute on labels (slightly offtopic):

Please do supply it, even when it's not necessary, because it's so very convenient to use from javascript:

var label = ...
var input = document.getElementById(label.htmlFor);

That's a lot more convenient than trying to figure out wheter the label has the input nested, or wheter the input is before the label, or after.. etc. And it never hurts to supply it.. so.

Just my 2 cents.

link|flag
vote up 0 vote down

I usually leave a checkbox unlabeled and then make its "label" a separate element. It's a pain, but there's so much cross-browser difference between how checkboxes and their labels are displayed (as you've noticed) that this is the only way I can come close to controlling how everything looks.

I also end up doing this in winforms development, for the same reason. I think the fundamental problem with the checkbox control is that it is really two different controls: the box and the label. By using a checkbox, you're leaving it up to the implementers of the control to decide how those two elements are displayed next to each other (and they always get it wrong, where wrong = not what you want).

I really hope someone has a better answer to your question.

link|flag
vote up 0 vote down

Thank you One Crayon for solving this problem that has been driving me crazy for over a year - maybe more.

I've googled and yahooed till my fingertips wore out and seem to get only responses that either didn't understand the issue or just didn't work.

I would look at gmail's list and wonder why their checkboxes were in the vertical center and my database list had it resting on the bottom of the div. I inserted your style into my css for my list display and bingo - it works!

Now, tell me how to make the row highlight yellow like when you click the checkbox in google mail and I'll call you my daddy!

link|flag
You need a little javascript. Just find the parent of the parent of the clicked checkbox (should be the tr) and loop through the child td elements, setting each to a class that contains your highlight style or directly setting the style on the td's themselves – Robert C. Barth Jan 30 at 6:51
Damn, I was too slow to be someone's daddy. sigh – One Crayon Jan 31 at 3:52
vote up 0 vote down

Yay thanks! This too has been driving me nuts forever.

In my particular case, this worked for me:

input {
width: 13px;
height: 13px;
padding: 0;
margin:0;
vertical-align: top;
position: relative;
*top: 1px;
*overflow: hidden;
}
label {
display: block;
padding: 0;
padding-left: 15px;
text-indent: -15px;
border: 0px solid;
margin-left: 5px;
vertical-align: top;
}

I am using the reset.css which might explain some of the differences, but this seems to work well for me.

link|flag

Your Answer

Get an OpenID
or

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