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
Content - specifically from the content style property - is not populated on parent elements.
content
main { content: 'A'; } main section { content: 'B'; }
The above CSS produces the following HTML:
<main><section>B</section></main>
The above CSS should produce something like this:
<main>A<section>B</section></main>
Or this:
<main><section>B</section>A</main>
The text was updated successfully, but these errors were encountered:
Update the nested test
2f2c22b
Fix incorrect expected output. See issue #13.
No branches or pull requests
Content - specifically from the
content
style property - is not populated on parent elements.Reproduction
The above CSS produces the following HTML:
Expected Result
The above CSS should produce something like this:
Or this:
The text was updated successfully, but these errors were encountered: