Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have defined a style for input elements in HTML, e.g.

input { font-family: Cambria; font-size: 13pt; }

So it by default applies to all the input elements I write in the page.

Now I want one specific input element with no style; can I do that?

share|improve this question
There are probably several old questions, though they can be hard to find due to varying formulations. The point still is that there is no exclusion mechanism in CSS in the sense asked. – Jukka K. Korpela Feb 23 at 6:19
@JukkaK.Korpela you are wrong about that: if this input is of a different type or has an unique class/ID you can. – Knu Feb 24 at 18:01
@Knu, you are welcome to post a solution to the question for which this is a duplicate. Just claiming that there is a solution does not help anyone. – Jukka K. Korpela Feb 24 at 18:42

1 Answer

The element selector has a lower priority than the class selector, so you can just add a class:

.special-input { font-family: sans-serif; font-size: 10pt; }
share|improve this answer
That does not make the input element appear with no style; it just styles it in a specific way. – Jukka K. Korpela Feb 23 at 6:15
@JukkaK.Korpela well you need to set the styles to whatever the defaults should be; you can't "remove" styles with CSS – Explosion Pills Feb 23 at 6:17

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.