boxcarracer8792
New member
It's kind of hard to explain since I am still learning css and html, and dividers, but I have a divider, with a background image that uses 'repeat-y'. Inside that divider I have another divided similar, that has a background and repeats-y, which both have not set height. I want the height to increase as each divider expands. Therefor I want the dividers inside to expand, and to also expand the outside divider. Here is an example of the code:
<div style="background: url(images/homepage10.png) repeat-y; width: 691px; height: auto; margin-left: auto; margin-right: auto;">
<div style="width: 600px; height: auto; margin-left: 40px; margin-right: 80px;">
<div style="width: 200px; margin-left: 10px; float: left;">
<ul>
<li>First</li>
<li>Second</li>
</ul>
</div>
<div style="width: 200px; margin-left: 10px; float: right;">
<ul>
<li>First</li>
<li>Second</li>
</ul>
</div>
</div>
</div>
<div style="background: url(images/homepage10.png) repeat-y; width: 691px; height: auto; margin-left: auto; margin-right: auto;">
<div style="width: 600px; height: auto; margin-left: 40px; margin-right: 80px;">
<div style="width: 200px; margin-left: 10px; float: left;">
<ul>
<li>First</li>
<li>Second</li>
</ul>
</div>
<div style="width: 200px; margin-left: 10px; float: right;">
<ul>
<li>First</li>
<li>Second</li>
</ul>
</div>
</div>
</div>