We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12e3ce1 commit 6043116Copy full SHA for 6043116
files/en-us/web/css/reference/at-rules/@container/index.md
@@ -81,6 +81,23 @@ If no `<container-query>` is specified, named containers are selected.
81
font-size: 1.5em;
82
}
83
84
+
85
+/* Boolean style() queries */
86
+@container style(--theme: one) or style(--theme: two) {
87
+ /* matched container styles */
88
+}
89
+@container style((--theme: one) or (--theme: two)) {
90
91
92
+@container style(--theme: one) and style(--theme: two) {
93
94
95
+@container style((--theme: one) and (--theme: two)) {
96
97
98
+@container not style(--theme: one) {
99
100
101
```
102
103
### Parameters
0 commit comments