2012-11-14 98 views
16

的中心是我的SVG對齊SVG屏幕

<svg id="svgMain" align="center" width="500" height="500"></svg> 

但它不是對準center.How,將其調整到屏幕的中心。

+0

https://stackoverflow.com/a/44963267/3221274 –

回答

29

嘗試CSS:

#svgMain {margin-left:auto; margin-right:auto; display:block;} 
+0

嘗試,但仍不能幹活 – iJade

+8

嘗試添加'顯示:塊;'到 – DACrosby

+0

@ DouglasA.Crosby thnks DAT做d招.... – iJade

1

包括在一個元素。

<div text-align="center"> 
<svg id="svgMain" align="center" width="500" height="500"></svg> 
</div> 

這應該有效。