I want to place an SVG file in the center of the screen, so that it takes up 25% of the screen but it keeps its proportions (i.e it isnt wider than it is high).
This is the code I have so far: http://jsbin.com/muyumegugi/1/edit
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<img src="http://upload.wikimedia.org/wikipedia/commons/8/84/Konqi_svg.svg" alt="Kiwi standing on oval">
</body>
</html>
Is it a case where I should be putting the SVG in a div and then constraining the size of the div, and making the svg expand to the size of the div, or should I be constraining the size of the svg instead.
Any help would be appreciated, not sure how to progress.
James