Quote:
Originally Posted by Psymon
I just tried it, and still have the same problem
Code:
<body>
<div class="svg_outer">
<div class="svg_inner">
<svg xmlns="http://www.w3.org/2000/svg" height="95%" preserveAspectRatio="xMidYMid meet" version="1.1" viewBox="0 0 592 900" width="95%" xmlns:xlink="http://www.w3.org/1999/xlink">
<image height="900" width="592" xlink:href="../Images/Frontispiece.jpg"></image>
</svg>
</div>
</div>
</body>
|
The only other thing I could suggest along this line of thinking is to reduce the height and width of the svg container by (say) 10, so it would be
Code:
<svg xmlns="http://www.w3.org/2000/svg" height="95%" preserveAspectRatio="xMidYMid meet" version="1.1" viewBox="0 0 582 890" width="95%" xmlns:xlink="http://www.w3.org/1999/xlink">
<image height="890" width="582" xlink:href="../Images/Frontispiece.jpg"></image>
</svg>