| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html lang="en"> | 2 <html lang="en"> |
| 3 <head> | 3 <head> |
| 4 <style> | 4 <style> |
| 5 div | 5 div |
| 6 { | 6 { |
| 7 width: 800px; | 7 width: 800px; |
| 8 height: 400px; | 8 height: 400px; |
| 9 padding: 50px; | 9 padding: 50px; |
| 10 border: 50px solid transparent; | 10 border: 50px solid transparent; |
| 11 background-image: url(resources/circle.png); | 11 background-image: url(resources/circle.png); |
| 12 background-size: 106px 85px; | 12 background-size: 124px 100px; |
| 13 background-repeat: repeat; | 13 background-repeat: repeat; |
| 14 background-origin: border-box; | 14 background-origin: border-box; |
| 15 background-clip: border-box; | 15 background-clip: border-box; |
| 16 } | 16 } |
| 17 </style> | 17 </style> |
| 18 </head> | 18 </head> |
| 19 | 19 |
| 20 <body> | 20 <body> |
| 21 <div/> | 21 <div/> |
| 22 </body> | 22 </body> |
| 23 | 23 |
| 24 </html> | 24 </html> |
| 25 | 25 |
| OLD | NEW |