Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-backgrounds/background-color-root-propagation-003.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Backgrounds and Borders Test: Do not propagate background from `html::before`</title>
<link rel="author" href="mailto:obrufau@igalia.com" title="Oriol Brufau">
<link rel="match" href="background-color-no-body-propagation-ref.html">
<style>
html::before {
content: "This text should have a green background.";
display: block;
margin: 8px;
background-color: green;
}
</style>