HTML : Set table height equal to parent height

How to set height of a table or div equal to the height of its parent?

Solution

Jquery

$("#CHILD_ELEMENT_ID").height($("#PARENT_ELEMENT_ID").height());

 

CSS

height: -webkit-fill-available;

More Questions