I've put in some effort, but I'm stuck on this css problem. There are 4 nested divs in total, with the innermost child div containing a table of rows.
Here is the HTML structure:
div class="moduleContentContainer">
<div id="dash-board-container">
<div class="dash-board-item">
<div class=".quote_list_container">
<table>
<tr><td>ssss</td></tr>
<tr><td>ssss</td></tr>
...
<table>
</div>
</div>
(1) The goal is to have the dash_Board_Item Div adjust its height based on the content inside the .quote_list_container div. This means it should be shorter if there is less content and taller if there is more.
(2) Additionally, when the window is resized, I want a scroll bar to appear on the .quote_list_container div when necessary.
Ray