We can use attribute selector like that td[colspan]
. But I need to use selecting "not colspan". Can you help me?
I tried td[not:colspan]
but it is not working. I tried in FrameworkJS but it is not working.
How to select CSS attribute selector?
We can use attribute selector like that td[colspan]
. But I need to use selecting "not colspan". Can you help me?
I tried td[not:colspan]
but it is not working. I tried in FrameworkJS but it is not working.
How to select CSS attribute selector?
2
Answers
You can use
td:not([colspan])
selector in your code.You were almost there.