Created
April 5, 2017 23:32
-
-
Save luisfc/f4a27c178ecf48a154d891f6b33bc9cc to your computer and use it in GitHub Desktop.
selector not y nth-child css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#jQuery | |
jQuery("thead tr th:not(:nth-child(3n+2))").css("display", "none"); | |
jQuery("tbody tr td:not(:nth-child(3n+2))").css("display", "none"); | |
#css | |
thead tr th:not(:nth-child(3n+2)), | |
tbody tr td:not(:nth-child(3n+2)) { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment