gpt4 book ai didi

css - 有没有办法在 Less 中获取另一个元素值?

转载 作者:技术小花猫 更新时间:2023-10-29 10:17:53 24 4
gpt4 key购买 nike

我是 Less 的新手。

在我的脚本中,我想在 box2 中使用 box1width

请查看我的脚本。

#box1
{
width: 1000px;
height: 500px;
}
#box2
{
width: #box1.width - 100px;
}

可以吗?如果是,请给我正确的Less代码。

最佳答案

不幸的是,这确实是不可能的。但是,您可以使用变量并执行类似这样的操作:

@box1width: 1000px;
#box1
{
width: @box1width;
height: 500px;
}
#box2
{
width: @box1width - 100;
}

关于css - 有没有办法在 Less 中获取另一个元素值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13778100/

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