+ 3
Can we change the position of whole "svg" frame.. Because i tried to align it to the center but that didn't worked. PLEASE HELP
3 Answers
+ 2
You should be able to position it using css and relative/absolute positiong.
For example:
<svg style=â
position: relative;
top: 100px;â>
</svg>
+ 1
Good suggestion
0
Thanks, I should try CSS on it..