Link to home
Start Free TrialLog in
Avatar of ChekKus
ChekKusFlag for United States of America

asked on

fixed div even when page is scrolling

I have a asp page where I need to create a fixed div to show some static content on the right side of the page. I want this to be seen even when users are scrolling over the page so that this div stays in same position.  
Avatar of ahmad2121
ahmad2121

example:


div
{
 bottom:10px;
 left:0;
 position:fixed;
}

Open in new window

Avatar of ChekKus

ASKER

seems like this will keep the div in fixed position. But, it does not scroll the div when I scroll the page.
What? I am doing this right now in my browser and the div stays on the page exactly where i have it. it never disappears from the page. Isn't this what you want?
Avatar of ChekKus

ASKER

<html>
<head>
    <title>test</title>
</head>
<body>
    <table width="1024" style="height: 1024;" border="1">
        <tr>
            <td style="width: 60%;">
                <h2>
                    This is a fixed text</h2>
            </td>
            <td style="width: 40%;">
                <div style="bottom: 10px; left: 0; position: fixed; text-align:center;">
                    this is the text that should be there even if the page scrolls at the fixed position. kind of like a floating div</div>
            </td>
        </tr>
    </table>
</body>
</html>
ASKER CERTIFIED SOLUTION
Avatar of ChekKus
ChekKus
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial