有没有办法在@supports(propertyName, value)中使用calc 函数?我的意思是 where仅适用于 calc 函数。<supports_condition>
@supports ( <supports_condition> ) {
.col-3 {
width: calc(25% - 20px/4)
}
.col-4 {
width: calc(33.3333333% - 20px/3)
}
.col-6 {
width: calc(50% - 20px/2)
}
}