CSS calc无法在firefox中运行

时间:2016-12-12 16:32:22

标签: css

我有一个元素的以下CSS,在chrome中它可以正常工作但在Firefox中,高度始终计算为height: -moz-calc(57%);

#unity-webgl{
  position: absolute;
  width: 100%;
  height: calc(100% - 43px);
  height: -moz-calc(100% - 43px);
  height: -webkit-calc(100% - 43px);
}

这是否有解决方法?

感谢。

0 个答案:

没有答案