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

Popular posts from this blog

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -

C++ 11 "class" keyword -