operatorLinebreak
Control whether line break should come before or after operators.
Possible options:
"before"
: Line break will come before operators."after"
: Line break will come after operators.
Default option is "after"
.
Example for "before"
a {
width: calc(
100%
- (
var(--sidebar-width) + var(--padding-horizontal) + var(--border-width)
+ var(--margin-horizontal)
+ var(--scrollbar-width)
)
);
}
Example for "after"
a {
width: calc(
100% -
(
var(--sidebar-width) + var(--padding-horizontal) + var(--border-width) +
var(--margin-horizontal) +
var(--scrollbar-width)
)
);
}