本文介绍了计算在CSS中的最大值或最大值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

可以这样做

max-width: calc(max(500px, 100% - 80px))

max-width: max(500px, calc(100% - 80px)))

推荐答案

不,你不能。 max() min()已从CSS3值和单位中删除。他们可能是。目前没有规范,并且 calc()规范没有提到在 calc()函数。

No you cannot. max() and min() have been dropped from CSS3 Values and Units. They may be re-introduced in CSS4 Values and Units however. There is currently no spec for them, and the calc() spec does not mention that either are valid inside a calc() function.

这篇关于计算在CSS中的最大值或最大值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-23 04:58