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

Popular posts from this blog

windows - Single EXE to Install Python Standalone Executable for Easy Distribution -

c# - Access objects in UserControl from MainWindow in WPF -

javascript - How to name a jQuery function to make a browser's back button work? -