---
source: crates/biome_formatter_test/src/snapshot_builder.rs
info: css/composes/composes.css
---
# Input
```css
.reference {
composes: selector from "a/long/file/path/exceeding/the/maximum/length/forcing/a/line-wrap/file.css";
}
```
# Prettier differences
```diff
@@ -1,3 +1,4 @@
.reference {
- composes: selector from "a/long/file/path/exceeding/the/maximum/length/forcing/a/line-wrap/file.css";
+ composes: selector from
+ "a/long/file/path/exceeding/the/maximum/length/forcing/a/line-wrap/file.css";
}
```
# Output
```css
.reference {
composes: selector from
"a/long/file/path/exceeding/the/maximum/length/forcing/a/line-wrap/file.css";
}
```
# Lines exceeding max width of 80 characters
```
3: "a/long/file/path/exceeding/the/maximum/length/forcing/a/line-wrap/file.css";
```