Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Centering image with SVG

Tags:

image

svg

I have the following image in my .svg file:

<image xlink:href="developer.mozilla.png" x="50%" y="50%" height="62" width="71"/>

I want it display in the middle of the page, but it seems that the upper left corner is in the middle. How can I get the center of the image to display in the center of the page?

like image 249
SomeKittens Avatar asked Jun 19 '12 16:06

SomeKittens


1 Answers

Something like this should work:

<image xlink:href="developer.mozilla.png" x="50%" y="50%" height="62" width="71" transform="translate(-35.5,-31)"/>
like image 95
Erik Dahlström Avatar answered Oct 15 '22 17:10

Erik Dahlström