All:
I am curious about what happens when I set the width of the parent DIV to auto and the width of the child div to 100% - how does the browser determine the width of these DIVs?
<div class="menuframe" style="position: fixed; width:auto; height:auto;">
<div class="menuitem style="width:100%; height:auto;">item1</div>
<div class="menuitem style="width:100%; height:auto;">item22</div>
<div class="menuitem style="width:100%; height:auto;">item333</div>
<div class="menuitem style="width:100%; height:auto;">item4444</div>
</div>