On my web page I have a structure roughly like this (just sort of psudo coded for example)
The amount of "item" div's is dynamic and pulled from a database. What I'm trying to do is get the left-menu div to be 100% of the size of the content div, but I can't figure out how to do it. What ends up happening is my items will be where they are supposed to be until they get to the bottom of the left-menu div and then they start wraping under the left-menu div. Regardless of what I put for the height of div left-menu, the items will keep wraping under. Any suggestions?
Thanks in advance.
Code:
<div content>
<div left-menu style=float:left; width:200px;>
left menu stuff here
</div left-menu>
<div welcome>
welcome stuff here
</div welcome>
<div item style=flowat:left; width:250px;>
<div title>
item stuff here
</div title>
<div image>
Image stuff here
</div image>
</div item>
</div content>
The amount of "item" div's is dynamic and pulled from a database. What I'm trying to do is get the left-menu div to be 100% of the size of the content div, but I can't figure out how to do it. What ends up happening is my items will be where they are supposed to be until they get to the bottom of the left-menu div and then they start wraping under the left-menu div. Regardless of what I put for the height of div left-menu, the items will keep wraping under. Any suggestions?
Thanks in advance.