I am trying to make my UL tag which is inside a div to inherit the height of the div.
Here is my code:
HTML:
<div class="xyz">
<ul id="abc">
<li><a href="#">Reviews</a></li>
<li><a href="#">Opinions</a></li>
<li><a href="#">About</a></li>
</ul>
</div>
CSS:
.xyz {
min-height: 85%;
}
.xyz #abc{
min-height: inherit;
}
I want to inherit the height from the div or at least set it in % inside the Div
Any help would be very helpful!