mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
8 lines
156 B
CSS
8 lines
156 B
CSS
div {
|
|
width: calc(200px - 100px);
|
|
width: calc(100px + 100px);
|
|
width: calc(100px * 2);
|
|
width: calc(100px / 2);
|
|
font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
|
}
|