Search code examples
csscss-selectorscss-specificity

Specificity for input[type="text"]


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 }

Solution

  • You mean like this?

    input[type="text"]#my_id { color:red }
    

    See the demo