我希望能够在下面代码的第 7 行的#content的高度上添加一个“!important” 。我需要能够使用变量$newHeight因为它需要保持动态。
有谁知道我如何在这个 css 声明中附加一个!important ?我尝试使用加号 (+) 进行连接,但没有成功。
这是代码:
$(window).resize(function() {
var $windowHeight = $(window).height();
var $newHeight = $(window).height()-$('#footer').height()-153;
if ($windowHeight < 847){
$('#content').css("height",$newHeight);
}
});