It seems a duplicated question but unfortunately I didn't find answers for this simple scenario when the Position
is Relative
.
I have a parent div with two child divs:
<div id="content">
<div id="content_rdivider"> </div>
<div id="content_right"></div>
</div>
where both parent and child divs have a position:relative;
A Jsfiddle example is HERE
So my question is almost like THIS question but the position is not absolute here.
How do I make the height of content_rdivider
div the same as the height of the parent div?