Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm working on a CSS file and find the need to style text input boxes, however, I'm running into problems. I need a simple declaration that matches all these elements:

<input />
<input type='text' />
<input type='password' />

... but doesn't match these ones:

<input type='submit' />
<input type='button' />
<input type='image' />
<input type='file' />
<input type='checkbox' />
<input type='radio' />
<input type='reset' />

Here's what I would like to do:

input[!type], input[type='text'], input[type='password'] {
   /* styles here */
}

In the above CSS, notice the first selector is input[!type]. What I mean by this is I want to select all input boxes where the type attribute is not specified (because it defaults to text but input[type='text'] doesn't match it ). Unfortunately, there is no such selector in the css3 spec that i could find.

Does anyone know of a way to accomplish this?

share|improve this question

4 Answers

up vote 33 down vote accepted

:not selector

input:not([type]), input[type='text'], input[type='password'], input[type='search']
{
   /* style here */
}
share|improve this answer
3  
This is not supported on IE6, IE7 and probably not In IE8 – Tim Santeford Oct 7 '09 at 19:08
14  
@Tim, then again, what is supported in IE6, 7, and 8... – priestc Oct 7 '09 at 19:36
@nbv4, true dat, but see my answer. – Tim Santeford Oct 7 '09 at 19:49

For a more cross browser solution you could style all inputs the way you want the non-typed, text, and password then another style the overrides that style for radios, checkboxes, etc.

input { border:solid 1px red; }

input[type=radio], 
input[type=checkbox], 
input[type=submit], 
input[type=reset], 
input[type=file] 
      { border:none; }
  • Or -

could whatever part of your code that is generating the non-typed inputs give them a class like ".no-type" or simply not output at all? Additionally this type of selection could be done with jQuery.

share|improve this answer
clever solution. would have to update for new html5 types (eg "email") – Timothy Jul 25 '12 at 14:12
3  
That is not the same; for example Opera would remove it's default styles from an input if you remove the border. – feeela Jan 25 at 14:12

Just wanted to add to this, you can have the :not selector in oldIE using selectivizr: http://selectivizr.com/

share|improve this answer

A simple hack is to use input[size] as you don't specify a size for anything other than text input.

The only place that this might bite you is if you are using size on type="button" or type="submit"

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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