Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!doctype html>
<link rel="match" href="/css/reference/ref-filled-green-100px-square-only.html">
<link rel="help" href="https://bugzil.la/2070531">
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<link rel="author" href="https://mozilla.org" title="Mozilla">
<title>Style queries and attr()</title>
<style>
#container {
--state: attr(data-state);
}
#child {
width: 100px;
height: 100px;
background-color: red;
@container style(--state: "good") {
background-color: green;
}
}
</style>
<p>Test passes if there is a filled green square.</p>
<div id="container" data-state="good">
<div id="child"></div>
</div>