I have bunch of rows have a ID contains a number as a name like this:
<tr id="839" class="stock">
...
<tr id="2493" class="stock">
...
<tr id="4156" class="stock">
...
My CSS rule fails when I apply this:
tr[id=^['[0-9]'] {
//CSS rules goes here
}