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.
Try CSS:
#svgMain {margin-left:auto; margin-right:auto; display:block;}
Include it in a element.
<div text-align="center">
<svg id="svgMain" align="center" width="500" height="500"></svg>
</div>
This should work.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With