Hi there, I'm currently facing an issue with making my child div expand to the height of its parent div.
Below is the CSS for the parent div:
#wrapper #content {
border: 1px ridge #999;
height: auto;
min-height: 1000px;
width: 1100px;
margin-top: 40px;
margin-right: auto;
margin-bottom: 30px;
margin-left: auto;
float: left;
}
And here is the CSS for the child div:
.tab_container {
clear: both;
width: 100%;
border-right: 1px ridge #999;
margin-bottom: 20px;
height: 100%;
}
Could you offer any suggestions or solutions to help me?