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
Hello. Should it be great to integrate LCSS selector inheritance to CSS4 spec? (idea from https://github.com/flavi1/lcss)
Just transform this :
@(#parent1) { @(.sub1.myClass > span, .sub2.active) { body { color: #888; } @media print { body { color: #333; } } } @(.sub3) { code { color: red; } } code { color: blue; } } @(#parent) { .sous-style { display: none; } }
To this :
#parent1 .sub1.myClass > span body, #parent1 .sub2.active body { color: #888; } @media print { #parent1 .sub1.myClass > span body, #parent1 .sub2.active body { color: #333; } } #parent1 .sub3 code { color: red; } #parent1 code { color: blue; } #parent .sous-style { display: none; }
Think about playing with css files importations, "var(--my-var, defalut_val)", and "--my-var: assigned_val;"
The text was updated successfully, but these errors were encountered:
How about this?
https://tabatkins.github.io/specs/css-nesting/
Sorry, something went wrong.
I'm guessing you can close this as a duplicate and add your concerns/suggestions to issues already filed...
Oh... Sorry for duplication, and thanks for the related links.
No branches or pull requests
Hello.
Should it be great to integrate LCSS selector inheritance to CSS4 spec?
(idea from https://github.com/flavi1/lcss)
Example
Just transform this :
To this :
Think about playing with css files importations, "var(--my-var, defalut_val)", and "--my-var: assigned_val;"
The text was updated successfully, but these errors were encountered: