| <!DOCTYPE html> | |
| <html> | |
| <style> | |
| #scroller { | |
| height: 200px; | |
| border: solid black thick; | |
| overflow: scroll; | |
| position: relative; | |
| } | |
| </style> | |
| <div id=scroller> | |
| <div style="background: blue; height: 400px; flex: none"></div> | |
| <div style="position: absolute; top: -20px; left: -20px; border: solid orange 20px"></div> | |
| </div> |