Here is my code:

<form id="form1" runat="server">
<div style="width:100%;">
    <asp:FormView ID="fvXCAR" runat="server" DefaultMode="Edit" style="overflow:auto">
        <ItemTemplate></ItemTemplate>
        <EditItemTemplate>
            <div style="width:800; overflow:auto;">
                <asp:Table ID="tblXCAR" runat="server"></asp:Table>
            </div>
        </EditItemTemplate>            
    </asp:FormView>
</div>
</form>

And here is my question:

I want the internal div (the one with overflow:scroll) to scroll. If I set that div to any fixed value, the scroll works properly. If I set it to 100%, the outer div scrolls, not the inner one. However, I'd like to be able to set both divs width to auto/100% because my users have many different screen sizes/resolutions.

Thanks, John

link|improve this question

71% accept rate
I don't see any div with overflow:scroll. Edit to clarify? – pjmorse Oct 12 '10 at 16:06
Btw: width:800 should be width:800px. – Alec Oct 12 '10 at 16:21
feedback

2 Answers

I know I'm not supposed to edit here but I can't find any way to edit my post.

I should have said overflow:auto not overflow:scroll.

Thanks,

link|improve this answer
You need a certain number of reputation points in order to post comments. Answer a few questions and you should get enough points. – John Fisher Oct 12 '10 at 16:25
feedback

Situations like this generally require javascript to run on page load and page resize. That javascript would measure the new width of the parent div and then set the child div's width to match. The child would then have the "overflow: auto" text, and the parent would have width: 100%.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.