由于某些原因,我的应用程序必须支持Chrome 23+。使用以下CSS:
.third-floor {
top: -webkit-calc(100% * 0.16 * 2);
top: calc(100% * 0.16 * 2);
}
我有以下计算值:
百分比值会破坏布局。我需要像素。我试过了:
.third-floor {
top: -webkit-calc(100% * 0.16 * 2 + 1px);
top: calc(100% * 0.16 * 2);
}
但我得到了顶部的空值。关于如何以像素强制输出的任何想法?