CSS - Select row table without first column -
i want select row in css without first column. tried this, not working:
#testtable tbody tr:not(td:first-child):hover{ /*code*/ } does know answer problem?
#testtable tbody tr:hover td:not(:first-child) { /* ... */ } or — if need support older browser, ie8 , ie7 — may write
#testtable tbody tr:hover td + td { /* ... */ } this select columns inside tbody except first 1 of each row (when hover row)
example: http://codepen.io/anon/pen/aitbr/
Comments
Post a Comment