Is is possible to use :not() with nth-child ?
:not()
nth-child
I tried something like this without any luck :
td:not(:nth-child(4n)){ te
Instead of using "not", the default approach in CSS is to override styles:
td { text-align: center; } td:first-child { text-align: left; }