Is there's something like != (not equal) in CSS? e.g, I have the following code:
input {
...
...
}
but for some input's I need to void this. I'd like to do that via adding class "reset" to input tag, e.g.
<input class="reset" ... />
which simple skip this tag from CSS...
How I can do that? Only one way I can see, it's to add some class to input tag, and rewrite as the following:
input.mod {
...
...
}