Commit 496e5c0
[css-cascade-5] fix example syntax error for
The `<<layer-name>>` in the `layer()` function in the `@import` syntax cannot be omitted.
```
@import [ <<url>> | <<string>> ]
[ layer | layer(<<layer-name>>) ]?
<<import-condition>> ;
```
This means that the following example is wrong, `()` should be removed.
```css
@import url("override.css") layer();
```@import layer;
1 parent b8a7973 commit 496e5c0
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
177 | 177 | | |
178 | 178 | | |
179 | 179 | | |
180 | | - | |
| 180 | + | |
181 | 181 | | |
182 | 182 | | |
183 | 183 | | |
| |||
0 commit comments