biome_css_formatter 0.5.7

Biome's CSS formatter
Documentation
---
source: crates/biome_formatter_test/src/snapshot_builder.rs
info: css/units.css
---

# Input

```css
.cssUnits {
  a: 5EM;
  a: 5REM;
  a: 5EX;
  a: 5REX;
  a: 5CAP;
  a: 5RCAP;
  a: 5CH;
  a: 5RCH;
  a: 5IC;
  a: 5RIC;
  a: 5LH;
  a: 5RLH;
  a: 5VH;
  a: 5VW;
  a: 5VI;
  a: 5VB;
  a: 5VMIN;
  a: 5VMAX;
  a: 5CM;
  a: 5MM;
  a: 5Q;
  a: 5IN;
  a: 5PT;
  a: 5PC;
  a: 5PX;
  a: 5DEG;
  a: 5GRAD;
  a: 5RAD;
  a: 5S;
  a: 5MS;
  a: 5HZ;
  a: 5KHZ;
  a: 5DPI;
  a: 5DPCM;
  a: 5DPPX;
  a: 5X;
}

.unknown {
  a: 5Unknown;
  /* http://browserbu.gs/css-hacks/media-min-width-0-backslash-0/ */
  a: 0\0;
}
```


=============================

# Outputs

## Output 1

-----
Indent style: Tab
Indent width: 2
Line ending: LF
Line width: 80
Quote style: Double Quotes
-----

```css
.cssUnits {
	a: 5em;
	a: 5rem;
	a: 5ex;
	a: 5rex;
	a: 5cap;
	a: 5rcap;
	a: 5ch;
	a: 5rch;
	a: 5ic;
	a: 5ric;
	a: 5lh;
	a: 5rlh;
	a: 5vh;
	a: 5vw;
	a: 5vi;
	a: 5vb;
	a: 5vmin;
	a: 5vmax;
	a: 5cm;
	a: 5mm;
	a: 5q;
	a: 5in;
	a: 5pt;
	a: 5pc;
	a: 5px;
	a: 5deg;
	a: 5grad;
	a: 5rad;
	a: 5s;
	a: 5ms;
	a: 5hz;
	a: 5khz;
	a: 5dpi;
	a: 5dpcm;
	a: 5dppx;
	a: 5x;
}

.unknown {
	a: 5unknown;
	/* http://browserbu.gs/css-hacks/media-min-width-0-backslash-0/ */
	a: 0\0;
}
```