OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE HTML> | |
2 <style> | |
3 #scroller { | |
4 width: 100px; | |
5 height: 100px; | |
6 overflow: scroll; | |
7 animation: boring 5s infinite; | |
ajuma
2015/08/19 23:24:59
This line can be removed.
| |
8 visibility: hidden; | |
9 } | |
10 #scrolled { | |
11 width: 10px; | |
12 height: 10px; | |
13 position: relative; | |
14 background: blue; | |
15 visibility: hidden; | |
16 top: 300px; | |
17 } | |
18 </style> | |
19 <div id="scroller"> | |
20 <div id="scrolled"></div> | |
21 </div> | |
OLD | NEW |