mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
11 lines
239 B
CSS
11 lines
239 B
CSS
.style {
|
|
width: calc(2px);
|
|
width: calc(2px + 1px);
|
|
width: calc(2em + 1%);
|
|
width: calc(2em * 2% * 3px);
|
|
width: calc(2em / 2 / 3);
|
|
width: calc(2em / (2 - 3) / (2 - 6));
|
|
width: calc(2em * 2 + 3);
|
|
width: calc(2em * 2 - 3 + 3em / 5);
|
|
}
|