I'm trying to make my child div to inherit the parents div height
I tried in my css:
height: inherit;
height: 100%;
min-height: inherit;
min-height: 100%;
I'm trying to make my child div to inherit the parents div height
I tried in my css:
height: inherit;
height: 100%;
min-height: inherit;
min-height: 100%;
This is generally how I make DIVs to extend to full height:
html,body { height: 100%; margin: 0px; padding: 0px; }
.full { height: 100% }