I have a main page with some content. Then I have a modal that appears, which is larger than the screen itself, so I need to scroll it to see it. What do I need to do for my CSS to make only modal scroll div instead of whole page?
Here is the CSS for modal
#overlay { visibility: hidden; position: absolute; left: 45%; width:auto; border:1px solid #A17E13; height:auto; text-align:left; z-index: 1000; } #overlay div { background-color:#FCFBEC; }
Here is the HTML:
<html><body> <div>main page</div> <div id="overlay"> <div> <div> <asp:Label ID="test">Text for modal here</asp:Label> </div> </div> </div> </body></html>
html css
user541597
source share