小程序 calc() 加空格才能生效

使用calc(),要写成:width: calc(100% / 3 - 2rpx - 10rpx); 才生效。 像:width: calc(100%/3-2rpx-10rpx);
.in{
  width: calc(100% - 30px - 10%);
  width: -webkit-calc(100% - 30px - 10%);
  width: -moz-calc(100% - 30px - 10%);

  height: calc(100% - 20px - 12%);
  height: -webkit-calc(100% - 20px - 12%);
  height: -moz-calc(100% - 20px - 12%);

  background: skyblue;
  padding: 20px 10% 12% 30px;
}

小程序 calc() 加空格才能生效

上一篇:Win10热角小程序


下一篇:接收微信参数