Home › Forums › CSS › 100% height of child when height of parent is not set? › Re: 100% height of child when height of parent is not set?
May 11, 2013 at 6:46 pm
#134804
Participant
You could try setting the parents position to relative (position: relative;). Then set the child’s position to absolute. You should then be able to give the child top and bottom values (top: 0; bottom: 0;) making it stretch out the entire height of the parent. However this could cause other issues such as the child’s content overflowing out of the child container.
Hopefully this makes sense! ;D