Full Section Page But not Responsive

Thanks for the answer vincent!

How do I set content’s height value in VH?
There is only %, PX, Auto in webflow editor

And what about the javascript solution by adding custom code section?
I used to use this code before I use webflow.

$(“.section”).height($(window).height());

	$(window).resize(function(){
		$(".section").height($(window).height());
	});

What do you think?