regex - Using regular expression in CSS to match numbers -


i have bunch of rows have id contains number name this:

<tr id="839" class="stock"> ... <tr id="2493" class="stock"> ... <tr id="4156" class="stock"> ... 

my css rule fails when apply this:

tr[id=^['[0-9]'] { //css rules goes here } 

with example you'd better off targeting them

tr.stock {} 

note: ids shouldn't start number

jquery option: jquery selector regular expressions


Popular posts from this blog

c# - ODP.NET Oracle.ManagedDataAccess causes ORA-12537 network session end of file -

matlab - Compression and Decompression of ECG Signal using HUFFMAN ALGORITHM -

utf 8 - split utf-8 string into bytes in python -