18

here is my svg

<svg id="svgMain" align="center" width="500" height="500"></svg> 

But its not aligned to the center.How to align it to the center of the screen.

iJade
  • 23,144
  • 56
  • 154
  • 243

2 Answers2

33

Try CSS:

#svgMain {margin-left:auto; margin-right:auto; display:block;}
Carter Medlin
  • 11,857
  • 5
  • 62
  • 68
Francis Nepomuceno
  • 4,935
  • 4
  • 29
  • 35
1

Include it in a element.

<div text-align="center">
<svg id="svgMain" align="center" width="500" height="500"></svg>
</div>

This should work.

Xin
  • 4,392
  • 5
  • 19
  • 15