OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 div#div1 { | |
4 background: blue; | |
5 width: 200px; | |
6 height: 200px; | |
7 } | |
8 div#div2 { | |
9 background: red; | |
10 width: 2000px; | |
11 height: 2000px; | |
12 } | |
13 </style> | |
14 <body"> | |
cimamoglu (inactive)
2014/03/19 14:23:07
remove the quote symbol "
qinmin
2014/03/19 16:44:58
Done.
| |
15 <div id="div1">will go fullscreen</div> | |
16 <div id="div2">will not go fullscreen</div> | |
17 </body> | |
OLD | NEW |