html - Highlight selected row using css -
how can highlight selected row in table using css. there way that?
tr { background: sky-blue-pink } /* use real colour */ tr * { background: transparent; }
where tr
more specific selector indicate whatever condition have in dom represent 'selected'. class selector: tr.selected
Comments
Post a Comment