OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <svg width="200" height="200"> |
| 3 <linearGradient id="g" x2="0" y1="0.1" y2="0.9"> |
| 4 <stop offset="0" stop-color="red"/> |
| 5 <stop offset="1" stop-color="blue"/> |
| 6 </linearGradient> |
| 7 <pattern id="p" x="0.1" y="0.1" width="0.2" height="0.2" viewBox="0 0 10 10"> |
| 8 <rect width="5" height="5"/> |
| 9 <rect x="5" y="5" width="5" height="5"/> |
| 10 </pattern> |
| 11 <rect x="20" y="20" width="50" height="50" fill="url(#g)"/> |
| 12 <rect x="95" y="20" width="50" height="50" fill="url(#p)"/> |
| 13 </svg> |
OLD | NEW |