Size: a a a
S
S
S
S
S
rect
to make it appear like you want it to appear
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Figures</title>
<style>
*{
padding: 0;
margin: 0;
font-size: 14px;
line-height: 14px;
}
</style>
</head>
<body>
<svg x="0" y="0" width="100" height="100">
<text x="0" y="10" >TEXT</text>
</svg>
</body>
</html>
S
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Figures</title>
<style>
*{
padding: 0;
margin: 0;
font-size: 14px;
line-height: 14px;
}
</style>
</head>
<body>
<svg x="0" y="0" width="100" height="100">
<text x="0" y="10" >TEXT</text>
</svg>
</body>
</html>
S