Absolutely, it scrolls, but does not reach 100% of the height:
.class { position: absolute; left: 0; right: 0; top: 0; bottom: 0; height: 100%; width: 100%; z-index: 1000000; background: rgba(0, 0, 0, 0.9); }
With fixed, it gets 100% tall but doesn't scroll
.class { position: fixed; left: 0; top: 0; height: 100%; width: 100%; z-index: 1000000; background: rgba(0, 0, 0, 0.9); }
I would like to avoid adding a fixed binding to the child and make it overflow: scroll
rob.m source share