摘要: calc计算无效: .css{ height: calc(100vh - 30px); } 在浏览器查看样式的时候,可见: .css{ height: calc(70vh); } 有效的写法: .css{ height: calc(~"100vh - 30px"); } 在浏览器查看样式的时候,可见 阅读全文
posted @ 2021-07-07 17:18 Peter_Yang0942 阅读(221) 评论(0) 推荐(0)