Dimitri Vorontzov
Dimitri Vorontzov

Reputation: 8114

How to set a div hight to a certain percent of a window height using jQuery?

A rather basic question, I guess, but I want help with it.

I need to set up the height of div to 70% of the height of the browser window, and I want to do it with jQuery.

What's the best code for that?

Thank you for your help!

Dimitri Vorontzov

Upvotes: 4

Views: 6871

Answers (2)

Razan Paul
Razan Paul

Reputation: 13868

Via Viewport-percentage lengths:

 height:70vh;

Jsfiddle: https://jsfiddle.net/Lztggxpk/1/

For more: https://developer.mozilla.org/en/docs/Web/CSS/length#Viewport-percentage_lengths

Upvotes: 0

Reigel Gallarde
Reigel Gallarde

Reputation: 65274

$('#theDiv').height(function(){
   return $(window).height() * 0.7;
});

Upvotes: 14

Related Questions