Sha256: 28351db0985fcaab15188322b9e9c16297e65e02ec02c49ede9485a865a0a64b
Contents?: true
Size: 637 Bytes
Versions: 17
Compression:
Stored size: 637 Bytes
Contents
<!DOCTYPE html> <html style="height: 250%; width: 150%"> <head> <style> * { padding: 0; } div { position: absolute; } #scroll { top: 125%; } #scrollable { top: 150%; overflow-y: scroll; overflow-x: scroll; height: 50px; width: 50px; position: relative; border: 1px solid black;} #inner { top: 50%; } </style> </head> <body style="height: 100%; width: 100%"> <div id="scroll" style = "top: 125%">scroll</div> <div id="scrollable"> <div style="height: 200px; width: 200px; poistion: relative"> <div id="inner">inner</div> </div> </div> </div> </body> </html>
Version data entries
17 entries across 17 versions & 5 rubygems