我正在尝试找出一种将我的 SVG 标签垂直居中的方法。
基本上,这是我试图居中的简化 SVG 代码:
<svg height="272" style="background-color:transparent;margin-left: auto; margin-right: auto;" width="130" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g style="font-size: 0.7em;" transform="scale(1 1) rotate(0) translate(0 270)">
<g id="1" style="font-size: 0.7em;">
<image height="32" width="32" x="49" xlink:href="../../images/JOB.GIF" y="-270"/>
</g>
</g>
</svg>
我可以毫不费力地将它放在页面的中间(水平来说),但是我也希望它垂直居中。
我可以添加包装器,但我想知道这样做的通用方法,而不取决于 SVG 大小或窗口大小。
我尝试了多种方法,但没有任何效果。
谢谢,