I've this code:
<svg style="background:pink">
<style type="text/css">
.text {
font-family:'Arial';
font-size:92px;
color: #000000;
}
</style>
<text class="text" x="20" y="82">Your text</text>
</svg>
How it's possible to remove the x
and y
and center the text ?
Thanks.