css calc无效问题

calc计算无效:

.css{
    height: calc(100vh - 30px);
}

在浏览器查看样式的时候,可见:

.css{
    height: calc(70vh);
}

有效的写法:

.css{
    height: calc(~"100vh - 30px");
}

在浏览器查看样式的时候,可见: 

.css{
    height: calc(100vh - 30px);
}

 

 

posted @ 2021-07-07 17:18  Peter_Yang0942  阅读(172)  评论(0编辑  收藏  举报