OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <style> |
| 3 a { |
| 4 border: solid; |
| 5 outline: solid; |
| 6 |
| 7 background-color: rgba(0, 128, 0, 0.5); |
| 8 border-color: green; |
| 9 color: green; |
| 10 fill: rgba(0, 128, 0, 0.5); |
| 11 outline-color: green; |
| 12 stroke: green; |
| 13 text-decoration-color: green; |
| 14 } |
| 15 </style> |
| 16 |
| 17 <a id="visited" href=""> |
| 18 This should be completely green. |
| 19 <svg width="14" height="14"> |
| 20 <rect x="2" y="2" width="10" height="10" stroke-width="4"></rect> |
| 21 </svg> |
| 22 </a> |
| 23 <br> |
| 24 <br> |
| 25 <a id="unvisited" href="#"> |
| 26 This should also be completely green. |
| 27 <svg width="14" height="14"> |
| 28 <rect x="2" y="2" width="10" height="10" stroke-width="4"></rect> |
| 29 </svg> |
| 30 </a> |
OLD | NEW |