是否可以做这样的事情
max-width: calc(max(500px, 100% - 80px))
要么
max-width: max(500px, calc(100% - 80px)))
在CSS中?
是否可以做这样的事情
max-width: calc(max(500px, 100% - 80px))
要么
max-width: max(500px, calc(100% - 80px)))
在CSS中?
Answers:
在Firefox 75,铬79,和Safari 11.1开始(除clamp
)。
min()
并max()
接受任意数量的参数。
clamp()
具有语法clamp(MIN, VAL, MAX)
,等效于max(MIN, min(VAL, MAX))
。
min()
并max()
可以嵌套。它们既可以在内部使用,也可以在calc()
外部使用,它们还可以包含数学表达式,这意味着您可以避免calc()
使用它们。
因此,原始示例可以写成:
max-width: max(500px, 100% - 80px);
你不能。max()
并且min()
已从CSS3值和单位中删除。但是,可以在CSS4值和单位中重新引入它们。当前没有针对它们的calc()
规范,并且该规范未提及它们在calc()
函数内部均有效。
一种解决方法是使用width
自身。
max-width: 500px;
width: calc(100% - 80px);
500px
或的最大宽度100% - 80px
。您的解决方案限制了最大宽度来500px
即使100% - 80px
是较大的。
min()
因此可能对其他人有所帮助。
虽然@大卫-曼戈尔德的回答以上,是“关闭”这是不正确的。
(如果您需要最低限度的价格,可以使用他的解决方案宽度而不是最大宽度,宽度)。
此解决方案表明@gert-sønderby对该答案的评论确实起作用:
答案应已使用min-width
,而不是max-width
。
这是应该说的:
min-width: 500px;
width: calc(100% - 80px);
是的,使用min-width和width来模拟max()函数。
这是Codepen(更容易在CodePen上观看演示,您可以对其进行编辑以进行自己的测试)。
.parent600, .parent500, .parent400 {
height: 80px;
border: 1px solid lightgrey;
}
.parent600 {
width: 600px;
}
.parent500 {
width: 500px;
}
.parent400 {
width: 400px;
}
.parent600 .child, .parent500 .child, .parent400 .child {
min-width: 500px;
width: calc(100% - 80px);
border: 1px solid blue;
height:60px;
}
.ruler600 {
width: 600px;
border: 1px solid green;
background-color: lightgreen;
height: 20px;
margin-bottom: 40px;
}
.width500 {
height: 20px;
width: 500px;
background-color: lightyellow;
float: left;
}
.width80 {
height: 20px;
width: 80px;
background-color: green;
float: right;
}
.parent600 .wrong, .parent500 .wrong, .parent400 .wrong {
max-width: 500px;
width: calc(100% - 80px);
border: 1px solid red;
height:60px;
}
<h2>(Min) min-width correctly gives us the Larger dimension: </h2>
<div class="parent600">
600px parent
<div class="child">child is max(500px, 600px - 80px) = max(500px, 520px) = 520px</div>
</div>
<div class="ruler600"><div class="width500">500px</div>20<div class="width80">80px</div></div>
<div class="parent500">
500px parent
<div class="child">child is max(500px, 500px - 80px) = max(500px, 420px) = 500px</div>
</div>
<div class="ruler600"><div class="width500">500px</div><div class="width80">80px</div></div>
<div class="parent400">
400px parent (child expands to width of 500px)
<div class="child">child is max(500px, 400px - 80px) = max(500px, 320px) = 500px</div>
</div>
<div class="ruler600"><div class="width500">500px</div><div class="width80">80px</div></div>
<h2>(Max) max-width <em>incorrectly</em> gives us the Smaller dimension: </h2>
<div class="parent400">
400px parent
<div class="wrong">child is min(500px, 400px - 80px) = min(500px, 320px) = 320px</div>
</div>
<div class="ruler600"><div class="width500">500px</div><div class="width80">80px</div></div>
<div class="parent500">
500px parent
<div class="wrong">child is min(500px, 500px - 80px) = min(500px, 420px) = 420px</div>
</div>
<div class="ruler600"><div class="width500">500px</div><div class="width80">80px</div></div>
<div class="parent600">
600px parent
<div class="wrong">child is min(500px, 600px - 80px) = min(500px, 520px) = 500px</div>
</div>
<div class="ruler600"><div class="width500">500px</div>20<div class="width80">80px</div></div>
就是说,@ andy的回答上面可能更容易推论,并且在许多用例中可能更合适。
还请注意,最终 a max()
和min()
函数可能会引入CSS,但截至2019年4月,它尚未成为规范的一部分。
在这里,您可以检查max()
浏览器的兼容性:https :
//developer.mozilla.org/en-US/docs/Web/CSS/max#Browser_compatibility。
这是提案的草案:
https : //drafts.csswg.org/css-values-4/#comp-func。
滚动到页面顶部以查看最新修订日期(截至今天,它的最新修订于2019年4月5日)。