SVGサンプル / テキストの配置(寄せ)


<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 
	<text x="180" y="20" font-size="12" fill="blue" text-anchor="start">テキストを使用します。左寄せです。</text>
	<text x="180" y="40" font-size="12" fill="blue" text-anchor="middle">テキストを使用します。中央寄せです。</text>
	<text x="180" y="60" font-size="12" fill="blue" text-anchor="end">テキストを使用します。右寄せです。</text>

</svg>

© wonder-boys.net all rights reserved.