InterviewSolution
Saved Bookmarks
| 1. |
How to support SVG in old browsers? |
|
Answer» To SUPPORT old BROWSERS instead of defining the resource of svg in src attribute of <img> tag, it should be defined in srcset attribute and in src the fallback PNG file should be defined. <img src="circle.png" ALT="circle" srcset="circle.svg"> |
|