We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb6f429 commit d066e83Copy full SHA for d066e83
after/syntax/css/conditional-5.vim
@@ -1 +1,3 @@
1
+syn keyword cssFontProp contained container-type container-name container
2
+syn keyword cssFontAttr contained inline-size
3
syn match cssFontDescriptor "@\(when\|else\)\>" nextgroup=cssFontDescriptorBlock skipwhite skipnl
test/test.css
@@ -198,8 +198,8 @@
198
}
199
200
@supports (display: auto) or
201
-(display: auto) not
202
-(display: auto) {
+ (display: auto) not
+ (display: auto) {
203
.conditional-3 {
204
display: auto;
205
@@ -213,7 +213,10 @@
213
214
@when media(screen) {
215
.conditional-5 {
216
- display: auto;
+ container-type: auto;
217
+ container-name: auto;
218
+ container: auto;
219
+ display: inline-size;
220
221
} @else {
222
0 commit comments