考虑这个SVG:
<svg xmlns="http://www.w3.org/2000/svg">
<defs>
<style type="text/css"><![CDATA[
.code {
font-family: monospace;
white-space: pre;
tab-size: 4;
}
]]></style>
</defs>
<text class="code" fill="black" font-size="16" x="0" y="16">
{
</text>
<text class="code" fill="black" font-size="16" x="0" y="32">
let r;
</text>
</svg>
渲染时,您可以看到标签大小明显为1个空格。我怎样才能解决这个问题?我正在使用Chrome,显然支持tab-size
。