OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <style> | 3 <style> |
| 4 body { overflow: hidden; } |
4 #rotate { | 5 #rotate { |
5 width: 1300px; | 6 width: 1300px; |
6 height: 100px; | 7 height: 100px; |
7 background-color: purple; | 8 background-color: purple; |
8 -webkit-transform:rotate(110deg); | 9 -webkit-transform:rotate(110deg); |
9 border-left: 2px solid red; | 10 border-left: 2px solid red; |
10 border-top: 2px solid blue; | 11 border-top: 2px solid blue; |
11 border-right: 2px solid cyan; | 12 border-right: 2px solid cyan; |
12 border-bottom: 2px solid green; | 13 border-bottom: 2px solid green; |
13 } | 14 } |
14 </style> | 15 </style> |
15 </head> | 16 </head> |
16 | 17 |
17 <body> | 18 <body> |
18 | 19 |
19 <div id="rotate"></div> | 20 <div id="rotate"></div> |
20 | 21 |
21 </body> | 22 </body> |
22 </html> | 23 </html> |
OLD | NEW |