mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 12:41:54 +03:00
12 lines
140 B
CSS
12 lines
140 B
CSS
|
.class {
|
||
|
width: calc(20px + 40px);
|
||
|
}
|
||
|
|
||
|
.class {
|
||
|
margin: calc(5% + 5px) calc(10% + 10px);
|
||
|
}
|
||
|
|
||
|
div {
|
||
|
background-size: calc(20px);
|
||
|
}
|