We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
:first-child :last-child :first-of-type :last-of-type :only-child :only-of-type :nth-child(3n) :nth-last-child(odd) :nth-of-type(5) :nth-last-of-type(3n+1) :not eg: div:not(.excludeMe)
:nth-of-type(2n+9) //第9个元素开始后的偶数
eg:
tr:nth-of-type(odd) td:nth-of-type(8) ~ td
从后往前读,
连起来就是, 在所有基数行中的 第8个td后的 所有的 td
The text was updated successfully, but these errors were encountered:
No branches or pull requests
how to read css easily
eg:
从后往前读,
连起来就是, 在所有基数行中的 第8个td后的 所有的 td
The text was updated successfully, but these errors were encountered: