Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
40
DIV layout breaks WebCombo
posted

Hello everyone, I've been unable to find any information about this problem in the documentation, Google searching and on this forum; so I'd like to submit a question or possible bug.

Whenever I create a relatively simple DIV-based layout the drop-down for WebCombo gets shifted (see example). It seems to be an issue with how the control determines the top/left values.

Is there something I'm overlooking or is this a bug?

Thank you.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server"><title>test</title>
</head>
<body>
    <div id="banner" style="position: relative; height: 100px; background-color: Green;">&nbsp;</div>
    <div id="bodyStuff" style="position: relative; height: 400px; background-color: Aqua;">
        <div id="navigation" style="position: absolute; width: 100px; height: 100%; background-color: Fuchsia;">
            link 1<br />
            link 2<br />
        </div>>
        <div id="content" style="position: absolute; left: 100px; top: 0px; height: 100%; background-color: Yellow;">
            <form id="form1" runat="server">
                <igcmbo:WebCombo ID="WebCombo1" runat="server">
                </igcmbo:WebCombo>
            </form>
        </div>
    </div>
</body>
</html>