Re: Wanted: Help centering Text
Stefan Schmitz <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.svg |
|---|---|
| Message-ID | <[email protected]> |
The following example is centered, but only in FF 2.x and 3.x. Opera and IE don't accept the dominant-baseline-Attribute, I suppose: <svg xmlns="http://www.w3.org/2000/svg" x="0" y="0" height="100" width="100"> <rect x="0" y="0" width="100" height="100" style="fill: #DDD; stroke: none;"/> <line x1="0" y1="0" x2="100" y2="100" style="stroke: grey;"/> <line x1="0" y1="100" x2="100" y2="0" style="stroke: grey;"/> <text x="50" y="50" style="dominant-baseline: central; text-anchor: middle; font-size: 24pt;">X</text> </svg> Regards Stefan