[ad_1]
css 100% minus pixels not working in jquery and Chrome devtools,
The following not working:
$(".mydiv").css({height: "calc(100%-50px)"});
It did not work either in Chrome devtools. Using 100% for responsive to window resize.
But it works in css style sheet:
.mydiv {
height: calc(100%-50px);
}
[ad_2]