OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE HTML> | |
2 <style> | |
3 #scroller { | |
4 width: 100px; | |
5 height: 100px; | |
6 overflow: scroll; | |
7 visibility: hidden; | |
8 } | |
9 #scrolled { | |
10 width: 10px; | |
11 height: 10px; | |
12 position: relative; | |
13 background: blue; | |
14 visibility: hidden; | |
15 top: 300px; | |
16 } | |
17 </style> | |
18 <div id="scroller"> | |
19 <div id="scrolled"></div> | |
20 </div> | |
OLD | NEW |