/*避免编译*/
.test_03{ width: 300px; height: calc(300px - 30px); } => .test_03 { width: 300px; height: calc(270px); }
.test_03{ width: 300px; height: ~‘calc(300px - 30px)‘; } => .test_03 { width: 300px; height: calc(300px - 30px); }
原文:https://www.cnblogs.com/wzndkj/p/9315842.html