gpt4 book ai didi

css - Less.js : error evaluating function `min` : incompatible types

转载 作者:行者123 更新时间:2023-12-04 12:36:32 27 4
gpt4 key购买 nike

我的 _main.less 中有以下样式文件

#mapid {
width: 100%;
min-height: min(65vh, 500px);
max-height: 500px;
}
但是 Less 编译器提示(使用 grunt)
>> File "public/less/_main.less" changed.
Running "less:development" (less) task
>> ./public/less/_main.less: [L86:C14] error evaluating function `min`: incompatible types
Warning: Error compiling ./public/less/_main.less Use --force to continue.

Aborted due to warnings.
但这在 CSS ( see docs ) 中工作正常。

最佳答案

引用 Disable LESS-CSS Overwriting calc() , 你可以在 LessCSS 中使用转义字符串:

#mapid {
width: 100%;
min-height: ~"min(65vh, 500px)";
max-height: 500px;
}

关于css - Less.js : error evaluating function `min` : incompatible types,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64255505/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com