Reputation: 910
I have a problem, and I cant find solution for that..
I have pop-up window, positioning fixed and 100% height and width.
I want to set overflow-y: scroll to block .item-details
, if there be much content - user can scroll, but only that block .item-details
.
I have already set that
.item-details {
border-top: 1px solid #e7e7e7;
padding-top: 38px;
overflow-y: scroll;
}
but it dont work..
Here is JsFiddle DEMO, thanks for any help.
Upvotes: 0
Views: 838