Basically I want a CSS selector that grabs all input[type=\"text\"] but that also has a class \"some-class\".
Both of the following don\'t seem to be working for me:
input[type="text"].some-class {
....
}
with no space between "input[type="text"]" and ".some-class" will work..
input[type="text"]-space in between is the problem-.some-class {}
You want input.some-class[type="text"]
.some-class input
looks for input tags that are descendants of .some-class
.
input.some-class
does the reverse.