biome_css_formatter 0.5.7

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

# Input

```css
.x{} 

```


# Prettier differences

```diff
--- Prettier
+++ Biome
@@ -1 +1,2 @@
-.x{} 
+.x {
+}
```

# Output

```css
.x {
}
```