There is a Div with the id of "placeholder" located in a table cell, containing three nested divs with ids of "content1," "content2," and "content3." I would like these nested divs to match the size of their parent, "placeholder," and overlap each other.
What is the most straightforward method to achieve this? I am searching for a solution that works across different web browsers.
Here is the HTML code:
<table><tr><td>
<div id='placeholder'>
<div id='content1' class='overlay'>...</div>
<div id='content2' class='overlay'>...</div>
<div id='content3' class='overlay'>...</div>
<div>
</td></tr></table>