biome_css_formatter 0.5.7

Biome's CSS formatter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
---
source: crates/biome_formatter_test/src/snapshot_builder.rs
info: css/comments/at-rules.css
---

# Input

```css
@charset "utf-8"; /* comment 1 */

@import /* comment 2 */ url("fineprint.css") /* comment 3 */ print /* comment 4 */; /* comment 5 */
@import /* comment 6 */ url("bluish.css") /* comment 7 */ projection /* comment 8 */, /* comment 9 */ tv /* comment 10 */;
/* comment 11 */ @import /* comment 12 */
    /* comment 13 */ url("bluish.css") /* comment 14 */
    /* comment 15 */ projection /* comment 16 */,
    /* comment 17 */ tv /* comment 18 */; /* comment 19 */
/* comment 20 */
@import/* comment 21 */url("bluish.css")/* comment 22 */projection/* comment 23 */,/* comment 24 */tv/* comment 25 */;
@import /* comment 26 */'custom.css'/* comment 27 */;/* comment 28 */
@import /* comment 29 */ url('landscape.css') /* comment 30 */ screen /* comment 31 */ and /* comment 32 */ (/* comment 33 */orientation/* comment 34 */:/* comment 35 */landscape/* comment 36 */)/* comment 37 */;

@namespace /* comment 38 */ url(http://www.w3.org/1999/xhtml) /* comment 39 */ ;
@namespace /* comment 40 */ svg /* comment 41 */ url(http://www.w3.org/2000/svg) /* comment 42 */;

@keyframes /* comment 43 */ slidein /* comment 44 */ {}

/* comment 45 */ @font-feature-values /* comment 46 */ Font Two /* comment 47 */ { /* comment 48 */
    /* comment 49 */ @styleset /* comment 50 */ { /* comment 51 */
        nice-style: 4;
    /* comment 52 */ } /* comment 53 */
/* comment 54 */ }  /* comment 55 */

/* comment 56 */ @counter-style /* comment 57 */ thumbs /* comment 58 */ {}

/* comment 59 */ @viewport /* comment 60 */ {}

@page /* comment 61 */ {}
@page /* comment 62 */ :first /* comment 63 */ {}
@page /* comment 64 */ vertical /* comment 65 */ {}

/* comment 66 */ @media /* comment 67 */ print /* comment 68 */ {}
@media /* comment 69 */ screen /* comment 70 */ , /* comment 71 */ print /* comment 72 */ {} /* comment 73 */
@media /* comment 74 */ only /* comment 75 */ screen /* comment 76 */ and /* comment 77 */ ( /* comment 78 */ min-width /* comment 79 */ : /* comment 80 */ 320px /* comment 81 */ ) /* comment 82 */ and /* comment 83 */ ( /* comment 84 */ max-width /* comment 85 */ : /* comment 86 */ 480px /* comment 87 */ ) /* comment 88 */ and /* comment 89 */ ( /* comment 90 */ resolution /* comment 91 */ : /* comment 92 */ 150dpi /* comment 93 */ ) /* comment 94 */ {}
@media/* comment 95 */only/* comment 96 */screen/* comment 97 */and/* comment 98 */(/* comment 99 */min-width/* comment 100 */:/* comment 101 */320px/* comment 102 */)/* comment 103 */and/* comment 104 */(/* comment 105 */max-width/* comment 106 */:/* comment 107 */480px/* comment 108 */)/* comment 109 */and/* comment 110 */(/* comment 111 */resolution/* comment 112 */:/* comment 113 */150dpi/* comment 114 */)/* comment 115 */{}
/* comment 116 */@media/* comment 117 */
    /* comment 118 */only/* comment 119 */
    /* comment 120 */screen/* comment 121 */
    /* comment 122 */and/* comment 123 */
    /* comment 124 */(/* comment 125 */
    /* comment 126 */min-width/* comment 127 */
    /* comment 128 */:/* comment 129 */
    /* comment 130 */320px/* comment 131 */
    /* comment 132 */)/* comment 133 */
    /* comment 134 */and/* comment 135 */
    /* comment 136 */(/* comment 137 */
    /* comment 138 */max-width/* comment 139 */
    /* comment 140 */:/* comment 141 */
    /* comment 142 */480px/* comment 143 */
    /* comment 144 */)/* comment 145 */
    /* comment 146 */and/* comment 147 */
    /* comment 148 */(/* comment 149 */
    /* comment 150 */resolution/* comment 151 */
    /* comment 152 */:/* comment 153 */
    /* comment 154 */150dpi/* comment 155 */
    /* comment 156 */)/* comment 157 */
    /* comment 158 */{}/* comment 159 */

@supports /* comment 160 */ ( /* comment 161 */ display /* comment 162 */ : /* comment 163 */ flex /* comment 164 */ ) /* comment 165 */ {}
@supports /* comment 166 */ not /* comment 167 */ ( /* comment 168 */ display /* comment 169 */ : /* comment 170 */ flex /* comment 171 */ ) /* comment 172 */ {}
@supports /* comment 173 */ (/* comment 174 */ display /* comment 175 */ : /* comment 176 */ table-cell /* comment 177 */ ) /* comment 178 */ and /* comment 179 */ ( /* comment 180 */ display /* comment 181 */ : /* comment 182 */ list-item /* comment 183 */ ) /* comment 184 */ and /* comment 185 */ ( /* comment 186 */display /* comment 187 */ : /* comment 188 */ run-in /* comment 189 */ ) /* comment 190 */ {}
@supports /* comment 191 */ (/* comment 192 */ --foo /* comment 193 */ : /* comment 194 */ green /* comment 195 */ ) /* comment 196 */ {}

/* comment 197 */ @supports /* comment 198 */ ( /* comment 199 */ display /* comment 200 */ : /* comment 201 */ flex /* comment 202 */ ) /* comment 203 */ {
    /* comment 204 */ @media /* comment 205 */ screen /* comment 206 */ and /* comment 207 */ ( /* comment 208 */ min-width /* comment 209 */ : /* comment 210 */ 900px /* comment 211 */ ) /* comment 212 */ {
    /* comment 213 */ } /* comment 214 */
/* comment 215 */ } /* comment 216 */


```


# Prettier differences

```diff
--- Prettier
+++ Biome
@@ -1,38 +1,27 @@
 @charset "utf-8"; /* comment 1 */
 
-@import /* comment 2 */ url("fineprint.css") /* comment 3 */ print
-  /* comment 4 */; /* comment 5 */
-@import /* comment 6 */ url("bluish.css") /* comment 7 */ projection
-    /* comment 8 */,
-  /* comment 9 */ tv /* comment 10 */;
-/* comment 11 */
-@import /* comment 12 */ /* comment 13 */ url("bluish.css") /* comment 14 */
+@import /* comment 2 */ url("fineprint.css") /* comment 3 */ print /* comment 4 */; /* comment 5 */
+@import /* comment 6 */ url("bluish.css") /* comment 7 */ projection /* comment 8 */, /* comment 9 */ tv /* comment 10 */;
+/* comment 11 */ @import /* comment 12 */
+    /* comment 13 */ url("bluish.css") /* comment 14 */
     /* comment 15 */ projection /* comment 16 */,
-  /* comment 17 */ tv /* comment 18 */; /* comment 19 */
+    /* comment 17 */ tv /* comment 18 */; /* comment 19 */
 /* comment 20 */
-@import /* comment 21 */ url("bluish.css") /* comment 22 */ projection
-    /* comment 23 */,
-  /* comment 24 */ tv /* comment 25 */;
-@import /* comment 26 */ "custom.css" /* comment 27 */; /* comment 28 */
-@import /* comment 29 */ url("landscape.css") /* comment 30 */ screen
-  /* comment 31 */ and /* comment 32 */
-  (
-    /* comment 33 */ orientation /* comment 34 */: /* comment 35 */ landscape
-      /* comment 36 */
-  )
-  /* comment 37 */;
+@import/* comment 21 */url("bluish.css")/* comment 22 */projection/* comment 23 */,/* comment 24 */tv/* comment 25 */;
+@import /* comment 26 */'custom.css'/* comment 27 */; /* comment 28 */
+@import /* comment 29 */ url('landscape.css') /* comment 30 */ screen /* comment 31 */ and /* comment 32 */ (/* comment 33 */orientation/* comment 34 */:/* comment 35 */landscape/* comment 36 */)/* comment 37 */;
 
-@namespace /* comment 38 */ url(http://www.w3.org/1999/xhtml) /* comment 39 */;
+@namespace /* comment 38 */ url(http://www.w3.org/1999/xhtml) /* comment 39 */ ;
 @namespace /* comment 40 */ svg /* comment 41 */ url(http://www.w3.org/2000/svg) /* comment 42 */;
 
 @keyframes /* comment 43 */ slidein /* comment 44 */ {
 }
 
-/* comment 45 */
-@font-feature-values /* comment 46 */ Font Two /* comment 47 */ {
+/* comment 45 */ @font-feature-values /* comment 46 */ Font
+two /* comment 47 */ {
   /* comment 48 */
-  /* comment 49 */
-  @styleset /* comment 50 */ {
+  /* comment 49 */ @
+  styleset /* comment 50 */ {
     /* comment 51 */
     nice-style: 4;
     /* comment 52 */
@@ -40,12 +29,11 @@
   /* comment 54 */
 } /* comment 55 */
 
-/* comment 56 */
-@counter-style /* comment 57 */ thumbs /* comment 58 */ {
+/* comment 56 */ @counter-style /* comment 57 */ thumbs /* comment 58 */ {
 }
 
-/* comment 59 */
-@viewport /* comment 60 */ {
+/* comment 59 */ @
+viewport /* comment 60 */ {
 }
 
 @page /* comment 61 */ {
@@ -55,80 +43,79 @@
 @page /* comment 64 */ vertical /* comment 65 */ {
 }
 
-/* comment 66 */
-@media /* comment 67 */ print /* comment 68 */ {
+/* comment 66 */ @media /* comment 67 */ print /* comment 68 */ {
 }
 @media /* comment 69 */ screen /* comment 70 */,
   /* comment 71 */ print /* comment 72 */ {
 } /* comment 73 */
-@media /* comment 74 */ only /* comment 75 */ screen /* comment 76 */ and /* comment 77 */ (/* comment 78 */ min-width /* comment 79 */: /* comment 80 */ 320px /* comment 81 */) /* comment 82 */ and /* comment 83 */ (/* comment 84 */ max-width /* comment 85 */: /* comment 86 */ 480px /* comment 87 */) /* comment 88 */ and /* comment 89 */ (/* comment 90 */ resolution /* comment 91 */: /* comment 92 */ 150dpi /* comment 93 */) /* comment 94 */ {
+@media /* comment 74 */ only /* comment 75 */ screen /* comment 76 */ and /* comment 77 */ (
+    /* comment 78 */ /* comment 79 */ /* comment 80 */ min-width: 320px /* comment 81 */
+  ) /* comment 82 */ and /* comment 83 */ (
+    /* comment 84 */ /* comment 85 */ /* comment 86 */ max-width: 480px /* comment 87 */
+  ) /* comment 88 */ and /* comment 89 */ (
+    /* comment 90 */ /* comment 91 */ /* comment 92 */ resolution: 150dpi /* comment 93 */
+  ) /* comment 94 */ {
 }
-@media /* comment 95 */only/* comment 96 */screen/* comment 97 */and/* comment 98 */(/* comment 99 */min-width/* comment 100 */:/* comment 101 */320px/* comment 102 */) /* comment 103 */and/* comment 104 */(/* comment 105 */max-width/* comment 106 */:/* comment 107 */480px/* comment 108 */) /* comment 109 */and/* comment 110 */(/* comment 111 */resolution/* comment 112 */:/* comment 113 */150dpi/* comment 114 */) /* comment 115 */ {
+@media /* comment 95 */ only /* comment 96 */ screen /* comment 97 */ and /* comment 98 */ (
+    /* comment 99 */ /* comment 100 */ /* comment 101 */ min-width: 320px /* comment 102 */
+  ) /* comment 103 */ and /* comment 104 */ (
+    /* comment 105 */ /* comment 106 */ /* comment 107 */ max-width: 480px /* comment 108 */
+  ) /* comment 109 */ and /* comment 110 */ (
+    /* comment 111 */ /* comment 112 */ /* comment 113 */ resolution: 150dpi /* comment 114 */
+  ) /* comment 115 */ {
 }
-/* comment 116 */
-@media /* comment 117 */ /* comment 118 */only/* comment 119 */ /* comment 120 */screen/* comment 121 */ /* comment 122 */and/* comment 123 */ /* comment 124 */(/* comment 125 */
-    /* comment 126 */min-width/* comment 127 */
-    /* comment 128 */:/* comment 129 */
-    /* comment 130 */320px/* comment 131 */
-    /* comment 132 */) /* comment 133 */ /* comment 134 */and/* comment 135 */ /* comment 136 */(/* comment 137 */
-    /* comment 138 */max-width/* comment 139 */
-    /* comment 140 */:/* comment 141 */
-    /* comment 142 */480px/* comment 143 */
-    /* comment 144 */) /* comment 145 */ /* comment 146 */and/* comment 147 */ /* comment 148 */(/* comment 149 */
-    /* comment 150 */resolution/* comment 151 */
-    /* comment 152 */:/* comment 153 */
-    /* comment 154 */150dpi/* comment 155 */
-    /* comment 156 */) /* comment 157 */ /* comment 158 */ {
+/* comment 116 */ @media /* comment 117 */
+  /* comment 118 */ only /* comment 119 */
+  /* comment 120 */ screen /* comment 121 */ /* comment 123 */ and /* comment 122 */ /* comment 124 */ (
+    /* comment 125 */
+    /* comment 126 */ /* comment 127 */
+    /* comment 128 */ /* comment 129 */
+    /* comment 130 */ min-width: 320px /* comment 131 */
+    /* comment 132 */
+  ) /* comment 133 */ /* comment 135 */ and /* comment 134 */ /* comment 136 */ (
+    /* comment 137 */
+    /* comment 138 */ /* comment 139 */
+    /* comment 140 */ /* comment 141 */
+    /* comment 142 */ max-width: 480px /* comment 143 */
+    /* comment 144 */
+  ) /* comment 145 */ /* comment 147 */ and /* comment 146 */ /* comment 148 */ (
+    /* comment 149 */
+    /* comment 150 */ /* comment 151 */
+    /* comment 152 */ /* comment 153 */
+    /* comment 154 */ resolution: 150dpi /* comment 155 */
+    /* comment 156 */
+  ) /* comment 157 */ /* comment 158 */ {
 } /* comment 159 */
 
-@supports /* comment 160 */
-  (
-    /* comment 161 */ display /* comment 162 */: /* comment 163 */ flex
-      /* comment 164 */
-  )
-  /* comment 165 */ {
+@supports /* comment 160 */ (
+    /* comment 161 */ /* comment 162 */ /* comment 163 */ display: flex /* comment 164 */
+  ) /* comment 165 */ {
 }
-@supports /* comment 166 */ not /* comment 167 */
-  (
-    /* comment 168 */ display /* comment 169 */: /* comment 170 */ flex
-      /* comment 171 */
-  )
-  /* comment 172 */ {
+@supports /* comment 166 */ not /* comment 167 */ (
+    /* comment 168 */ /* comment 169 */ /* comment 170 */ display: flex /* comment 171 */
+  ) /* comment 172 */ {
 }
-@supports /* comment 173 */
-  (
-    /* comment 174 */ display /* comment 175 */: /* comment 176 */ table-cell
-      /* comment 177 */
-  )
-  /* comment 178 */ and /* comment 179 */
-  (
-    /* comment 180 */ display /* comment 181 */: /* comment 182 */ list-item
-      /* comment 183 */
-  )
-  /* comment 184 */ and /* comment 185 */
-  (
-    /* comment 186 */ display /* comment 187 */: /* comment 188 */ run-in
-      /* comment 189 */
-  )
-  /* comment 190 */ {
+@supports /* comment 173 */ (
+    /* comment 174 */ /* comment 175 */ /* comment 176 */ display: table-cell /* comment 177 */
+  ) /* comment 178 */ and
+  /* comment 179 */ (
+    /* comment 180 */ /* comment 181 */ /* comment 182 */ display: list-item /* comment 183 */
+  ) /* comment 184 */ and
+  /* comment 185 */ (
+    /* comment 186 */ /* comment 187 */ /* comment 188 */ display: run-in /* comment 189 */
+  ) /* comment 190 */ {
 }
-@supports /* comment 191 */
-  (
-    /* comment 192 */ --foo /* comment 193 */: /* comment 194 */ green
-      /* comment 195 */
-  )
-  /* comment 196 */ {
+@supports /* comment 191 */ (
+    /* comment 192 */ /* comment 193 */ /* comment 194 */ --foo: green /* comment 195 */
+  ) /* comment 196 */ {
 }
 
-/* comment 197 */
-@supports /* comment 198 */
-  (
-    /* comment 199 */ display /* comment 200 */: /* comment 201 */ flex
-      /* comment 202 */
-  )
-  /* comment 203 */ {
-  /* comment 204 */
-  @media /* comment 205 */ screen /* comment 206 */ and /* comment 207 */ (/* comment 208 */ min-width /* comment 209 */: /* comment 210 */ 900px /* comment 211 */) /* comment 212 */ {
+/* comment 197 */ @supports /* comment 198 */ (
+    /* comment 199 */ /* comment 200 */ /* comment 201 */ display: flex /* comment 202 */
+  ) /* comment 203 */ {
+  /* comment 204 */ @media /* comment 205 */ screen /* comment 206 */ and /* comment 207 */ (
+      /* comment 208 */ /* comment 209 */ /* comment 210 */ min-width: 900px /* comment 211 */
+    ) /* comment 212 */ {
     /* comment 213 */
   } /* comment 214 */
   /* comment 215 */
```

# Output

```css
@charset "utf-8"; /* comment 1 */

@import /* comment 2 */ url("fineprint.css") /* comment 3 */ print /* comment 4 */; /* comment 5 */
@import /* comment 6 */ url("bluish.css") /* comment 7 */ projection /* comment 8 */, /* comment 9 */ tv /* comment 10 */;
/* comment 11 */ @import /* comment 12 */
    /* comment 13 */ url("bluish.css") /* comment 14 */
    /* comment 15 */ projection /* comment 16 */,
    /* comment 17 */ tv /* comment 18 */; /* comment 19 */
/* comment 20 */
@import/* comment 21 */url("bluish.css")/* comment 22 */projection/* comment 23 */,/* comment 24 */tv/* comment 25 */;
@import /* comment 26 */'custom.css'/* comment 27 */; /* comment 28 */
@import /* comment 29 */ url('landscape.css') /* comment 30 */ screen /* comment 31 */ and /* comment 32 */ (/* comment 33 */orientation/* comment 34 */:/* comment 35 */landscape/* comment 36 */)/* comment 37 */;

@namespace /* comment 38 */ url(http://www.w3.org/1999/xhtml) /* comment 39 */ ;
@namespace /* comment 40 */ svg /* comment 41 */ url(http://www.w3.org/2000/svg) /* comment 42 */;

@keyframes /* comment 43 */ slidein /* comment 44 */ {
}

/* comment 45 */ @font-feature-values /* comment 46 */ Font
two /* comment 47 */ {
  /* comment 48 */
  /* comment 49 */ @
  styleset /* comment 50 */ {
    /* comment 51 */
    nice-style: 4;
    /* comment 52 */
  } /* comment 53 */
  /* comment 54 */
} /* comment 55 */

/* comment 56 */ @counter-style /* comment 57 */ thumbs /* comment 58 */ {
}

/* comment 59 */ @
viewport /* comment 60 */ {
}

@page /* comment 61 */ {
}
@page /* comment 62 */ :first /* comment 63 */ {
}
@page /* comment 64 */ vertical /* comment 65 */ {
}

/* comment 66 */ @media /* comment 67 */ print /* comment 68 */ {
}
@media /* comment 69 */ screen /* comment 70 */,
  /* comment 71 */ print /* comment 72 */ {
} /* comment 73 */
@media /* comment 74 */ only /* comment 75 */ screen /* comment 76 */ and /* comment 77 */ (
    /* comment 78 */ /* comment 79 */ /* comment 80 */ min-width: 320px /* comment 81 */
  ) /* comment 82 */ and /* comment 83 */ (
    /* comment 84 */ /* comment 85 */ /* comment 86 */ max-width: 480px /* comment 87 */
  ) /* comment 88 */ and /* comment 89 */ (
    /* comment 90 */ /* comment 91 */ /* comment 92 */ resolution: 150dpi /* comment 93 */
  ) /* comment 94 */ {
}
@media /* comment 95 */ only /* comment 96 */ screen /* comment 97 */ and /* comment 98 */ (
    /* comment 99 */ /* comment 100 */ /* comment 101 */ min-width: 320px /* comment 102 */
  ) /* comment 103 */ and /* comment 104 */ (
    /* comment 105 */ /* comment 106 */ /* comment 107 */ max-width: 480px /* comment 108 */
  ) /* comment 109 */ and /* comment 110 */ (
    /* comment 111 */ /* comment 112 */ /* comment 113 */ resolution: 150dpi /* comment 114 */
  ) /* comment 115 */ {
}
/* comment 116 */ @media /* comment 117 */
  /* comment 118 */ only /* comment 119 */
  /* comment 120 */ screen /* comment 121 */ /* comment 123 */ and /* comment 122 */ /* comment 124 */ (
    /* comment 125 */
    /* comment 126 */ /* comment 127 */
    /* comment 128 */ /* comment 129 */
    /* comment 130 */ min-width: 320px /* comment 131 */
    /* comment 132 */
  ) /* comment 133 */ /* comment 135 */ and /* comment 134 */ /* comment 136 */ (
    /* comment 137 */
    /* comment 138 */ /* comment 139 */
    /* comment 140 */ /* comment 141 */
    /* comment 142 */ max-width: 480px /* comment 143 */
    /* comment 144 */
  ) /* comment 145 */ /* comment 147 */ and /* comment 146 */ /* comment 148 */ (
    /* comment 149 */
    /* comment 150 */ /* comment 151 */
    /* comment 152 */ /* comment 153 */
    /* comment 154 */ resolution: 150dpi /* comment 155 */
    /* comment 156 */
  ) /* comment 157 */ /* comment 158 */ {
} /* comment 159 */

@supports /* comment 160 */ (
    /* comment 161 */ /* comment 162 */ /* comment 163 */ display: flex /* comment 164 */
  ) /* comment 165 */ {
}
@supports /* comment 166 */ not /* comment 167 */ (
    /* comment 168 */ /* comment 169 */ /* comment 170 */ display: flex /* comment 171 */
  ) /* comment 172 */ {
}
@supports /* comment 173 */ (
    /* comment 174 */ /* comment 175 */ /* comment 176 */ display: table-cell /* comment 177 */
  ) /* comment 178 */ and
  /* comment 179 */ (
    /* comment 180 */ /* comment 181 */ /* comment 182 */ display: list-item /* comment 183 */
  ) /* comment 184 */ and
  /* comment 185 */ (
    /* comment 186 */ /* comment 187 */ /* comment 188 */ display: run-in /* comment 189 */
  ) /* comment 190 */ {
}
@supports /* comment 191 */ (
    /* comment 192 */ /* comment 193 */ /* comment 194 */ --foo: green /* comment 195 */
  ) /* comment 196 */ {
}

/* comment 197 */ @supports /* comment 198 */ (
    /* comment 199 */ /* comment 200 */ /* comment 201 */ display: flex /* comment 202 */
  ) /* comment 203 */ {
  /* comment 204 */ @media /* comment 205 */ screen /* comment 206 */ and /* comment 207 */ (
      /* comment 208 */ /* comment 209 */ /* comment 210 */ min-width: 900px /* comment 211 */
    ) /* comment 212 */ {
    /* comment 213 */
  } /* comment 214 */
  /* comment 215 */
} /* comment 216 */
```

# Errors
```
at-rules.css:19:61 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

  × expected `{` but instead found `Two`
  
    17 │ @keyframes /* comment 43 */ slidein /* comment 44 */ {}
    18 │ 
  > 19 │ /* comment 45 */ @font-feature-values /* comment 46 */ Font Two /* comment 47 */ { /* comment 48 */
       │                                                             ^^^
    20 │     /* comment 49 */ @styleset /* comment 50 */ { /* comment 51 */
    21 │         nice-style: 4;
  
  i Remove Two
  
at-rules.css:20:23 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

  × Unexpected value or character.
  
    19 │ /* comment 45 */ @font-feature-values /* comment 46 */ Font Two /* comment 47 */ { /* comment 48 */
  > 20 │     /* comment 49 */ @styleset /* comment 50 */ { /* comment 51 */
       │                       ^^^^^^^^
    21 │         nice-style: 4;
    22 │     /* comment 52 */ } /* comment 53 */
  
  i Expected one of:
  
  - charset
  - color-profile
  - container
  - counter-style
  - document
  - font-face
  - font-feature-values
  - font-palette-values
  - import
  - keyframes
  - layer
  - media
  - namespace
  - page
  - property
  - supports
  - viewport
  - scope
  
at-rules.css:27:19 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

  × Unexpected value or character.
  
    25 │ /* comment 56 */ @counter-style /* comment 57 */ thumbs /* comment 58 */ {}
    26 │ 
  > 27 │ /* comment 59 */ @viewport /* comment 60 */ {}
       │                   ^^^^^^^^
    28 │ 
    29 │ @page /* comment 61 */ {}
  
  i Expected one of:
  
  - charset
  - color-profile
  - container
  - counter-style
  - document
  - font-face
  - font-feature-values
  - font-palette-values
  - import
  - keyframes
  - layer
  - media
  - namespace
  - page
  - property
  - supports
  - viewport
  - scope
  

```

# Lines exceeding max width of 80 characters
```
    3: @import /* comment 2 */ url("fineprint.css") /* comment 3 */ print /* comment 4 */; /* comment 5 */
    4: @import /* comment 6 */ url("bluish.css") /* comment 7 */ projection /* comment 8 */, /* comment 9 */ tv /* comment 10 */;
   10: @import/* comment 21 */url("bluish.css")/* comment 22 */projection/* comment 23 */,/* comment 24 */tv/* comment 25 */;
   12: @import /* comment 29 */ url('landscape.css') /* comment 30 */ screen /* comment 31 */ and /* comment 32 */ (/* comment 33 */orientation/* comment 34 */:/* comment 35 */landscape/* comment 36 */)/* comment 37 */;
   15: @namespace /* comment 40 */ svg /* comment 41 */ url(http://www.w3.org/2000/svg) /* comment 42 */;
   51: @media /* comment 74 */ only /* comment 75 */ screen /* comment 76 */ and /* comment 77 */ (
   52:     /* comment 78 */ /* comment 79 */ /* comment 80 */ min-width: 320px /* comment 81 */
   54:     /* comment 84 */ /* comment 85 */ /* comment 86 */ max-width: 480px /* comment 87 */
   56:     /* comment 90 */ /* comment 91 */ /* comment 92 */ resolution: 150dpi /* comment 93 */
   59: @media /* comment 95 */ only /* comment 96 */ screen /* comment 97 */ and /* comment 98 */ (
   60:     /* comment 99 */ /* comment 100 */ /* comment 101 */ min-width: 320px /* comment 102 */
   62:     /* comment 105 */ /* comment 106 */ /* comment 107 */ max-width: 480px /* comment 108 */
   64:     /* comment 111 */ /* comment 112 */ /* comment 113 */ resolution: 150dpi /* comment 114 */
   69:   /* comment 120 */ screen /* comment 121 */ /* comment 123 */ and /* comment 122 */ /* comment 124 */ (
   75:   ) /* comment 133 */ /* comment 135 */ and /* comment 134 */ /* comment 136 */ (
   81:   ) /* comment 145 */ /* comment 147 */ and /* comment 146 */ /* comment 148 */ (
   91:     /* comment 161 */ /* comment 162 */ /* comment 163 */ display: flex /* comment 164 */
   95:     /* comment 168 */ /* comment 169 */ /* comment 170 */ display: flex /* comment 171 */
   99:     /* comment 174 */ /* comment 175 */ /* comment 176 */ display: table-cell /* comment 177 */
  102:     /* comment 180 */ /* comment 181 */ /* comment 182 */ display: list-item /* comment 183 */
  105:     /* comment 186 */ /* comment 187 */ /* comment 188 */ display: run-in /* comment 189 */
  109:     /* comment 192 */ /* comment 193 */ /* comment 194 */ --foo: green /* comment 195 */
  114:     /* comment 199 */ /* comment 200 */ /* comment 201 */ display: flex /* comment 202 */
  116:   /* comment 204 */ @media /* comment 205 */ screen /* comment 206 */ and /* comment 207 */ (
  117:       /* comment 208 */ /* comment 209 */ /* comment 210 */ min-width: 900px /* comment 211 */
```