+ 5
[OFF-TOPIC]SVG Alignment
How can I align SVG to the center of the webpage using CSS. That will be align to the center from any device.
9 Answers
+ 3
Warith Vatanaplachaigoon
Look at this code
https://code.sololearn.com/Wuk85cBCeypA/?ref=app
+ 5
Here Olga
https://code.sololearn.com/W918sUH9h2i3/?ref=app
Try to use iPad or Tablet to solved this question.
If you see this in smartphone. I'd already set the x,y points of my SVG. So it may be already align if you use smartphone.
Thanks.
+ 5
Olga Only horizontally.
+ 5
Wow! Itâs work! Thanks for your help @Olga
+ 3
Need to see the code
+ 3
Warith Vatanaplachaigoon
Please tell me you want to position only horizontally in the middle or in the center of the screen of the device
+ 3
And can be simply
svg { display: block;
margin: 0 auto;}
+ 3
Warith Vatanaplachaigoon
Height is necessary for the location in the center of the entire screen. Only for horizontal positioning, height is not needed. It is better to erase. Sorry.
Another option will also work.
Thank you for the opportunity to solve a lovely exercise.
+ 2
svg {
display: block;
margin: 10px auto;
}