html – 将svg与屏幕中心对齐

前端之家收集整理的这篇文章主要介绍了html – 将svg与屏幕中心对齐前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > How do I center an SVG in a div?6
这是我的svg
<svg id="svgMain" align="center" width="500" height="500"></svg>

但它不对准中心.如何将其与屏幕的中心对齐.

解决方法

尝试CSS:
#svgMain {margin-left:auto; margin-right:auto; display:block;}
原文链接:https://www.f2er.com/html/231062.html

猜你在找的HTML相关文章