我正在使用LESS值和Bootstrap开发一个站点。我只想使用LESS做相当于jquery的$("somediv").width() * somevalue
。
我目前的CSS看起来像这样
@test-value: @grid-columns * 10 / 3;
.grow:hover .social-links-round {
opacity: 0.2;
width: @test-value * 1px;
}
/*the above works fine*/
.grow:hover .social-links-row:hover .social-links-round{
opacity: 0.5;
width: this-current-value * 2px; /*this is what i need*/
}
这可能吗?