html - css scroll with overflow property does not work -


i trying have vertical scrollbar in body of page. should implemented css.

i don't want use fixed height.

i used following code in css:

.summary-scroll {    overflow-y: scroll;    overflow-x:hidden;    height: 100%; } 

but not work. when add attribute named: layout="column" (without need have class attribute) body has scrollbar.

i don't know relation between layout , scrolling? have implement in css , solution handling in css file?

you can this

.body-scroll{ max-height:600px;               height: 100% !important;               overflow-y: scroll;                overflow-x: hidden; }  

Comments

Popular posts from this blog

amazon web services - S3 Pre-signed POST validate file type? -

c# - Check Keyboard Input Winforms -