html - How to make possible vertical scroll on popup and disable vertical scroll for page by using CSS? -
html - How to make possible vertical scroll on popup and disable vertical scroll for page by using CSS? -
i'm developing responsive web site little devices. need show popup (pure div) , create possible vertical scroll due big content. instead scrolling popup main page scrolled.
my question how disable main page scroll , scroll popup?
you can set height of .popup
, set overflow
auto
.popup{ height:50px; overflow:auto; }
now, if popup has big contents doesn't fit in 50 pixels height , you'll scroll on it, contents in popup scrolled instead of whole document contents.
html css
Comments
Post a Comment