I have tabs which contain text. When I try to set the height with height:auto
or height:100%
, it works only when using px
. However this prevents the tabs from expanding when the text is long.
this is my css:
.tab-section {
float: left;
width: 100%;
height: 792px;
margin-bottom: 25px;
}
How do I make the height auto
?