I have a local page in android webview, pages's html
and body
both has width:100%;height:100%;overflow:hidden;
, and the #result-popup-wrap
has the following css:
#result-popup-wrap {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 245px;
background: #fbfbfb;
border-top: 1px solid #dcd9d5;
-webkit-transform: translateY(100%);
}
but, as you see, when I scroll to bottom of the page, I can see the #result-popup-wrap
, which should not be visible.
Any help is appreciated!