Is there any way to get another element value in L

2019-04-03 23:15发布

I'm new to Less.

In my script, I'd like to use the width of box1 in box2.

Please review my script.

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

Is it possible or not? If yes, please give me correct Less code.

标签: css less
2条回答
太酷不给撩
2楼-- · 2019-04-03 23:52

No, that's not possible. LESS processes the style sheet to produce CSS, and it doesn't have any knowledge of the elements in the page.

What you are looking for is CSS Expressions, but that was only supported in Internet Explorer, and support for that was dropped in IE8.

查看更多
Lonely孤独者°
3楼-- · 2019-04-04 00:01

unfortunatly it is indeed not possible. You could work with variables and do something like this however:

@box1width: 1000px;
#box1
{
    width: @box1width;
    height: 500px;
}
#box2
{
    width: @box1width - 100;
}
查看更多
登录 后发表回答