InterviewSolution
Saved Bookmarks
| 1. |
What are different approaches to make an image responsive? |
Answer»
Bigger Screen (>650px) For any other screen
For example SVG <svg width="100" height="100"> <circle cx="50" cy="50" r="40" STROKE="green" stroke-width="4" fill="YELLOW" /></svg> |
|