Hello, let's say that I have some inputs with ID like that:
ctl139_ctl00_txtValue
ctl140_ctl00_txtValue
ctl141_ctl00_txtValue
.....
xxxxxx_ctl00_txtValue
how, using CSS, apply the same style for these inputs (where ID follows the pattern: xxxx_ctl00_txtValue)
I tried CSS3 as Minkiele suggessted but I've done the following:
[id*="_ctl00_txtValue"]{ /* RULES */ }
then it should apply style for all elements where id contains my string. It works in Chrome but not in IE8 but msdn tells that it should work. Why it doesn't work?