Beispiel:SVG-27-text-anchor.html
Aus SELFHTML-Wiki
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Text ausrichten mit text-anchor</title>
<style>
text {
font-family: sans-serif;
font-size: 48px;
}
path {
fill:none;
stroke: #337599;
stroke-width: 1;
}
</style>
</head>
<body>
<h1>Text ausrichten mit text-anchor</h1>
<svg viewBox="0 0 600 300" width="600px" height="300px">
<path d="M200,0 v260"/>
<text x="200" y="60" text-anchor="start">
start
</text>
<text x="200" y="140" text-anchor="middle">
middle
</text>
<text x="200" y="220" text-anchor="end">
end
</text>
</svg>
</body>
</html>