友 我可以使用css作为嵌套函数以及如何获取元素的当前css属性,如下面的
.button1:active
{
#button2
{
width:width+20px;
}
}
答案 0 :(得分:2)
不使用标准CSS。
你可以做。
.button1:active #button2 {
width:20px;
}
你可以做的很少。
@elementWidth: 20px;
.button1:active {
#button2 {
width: @elementWidth + 20px; //Resulting width would be 40px
}
}
答案 1 :(得分:1)