How can I add specifity to something that reads:
input[type="text"] { color:red }
I want something like:
#my_id input[type="text"] { color:red }
You mean like this?
input[type="text"]#my_id { color:red }
See the demo