我有一些像这样的代码:
svg {font-family:Verdana,sans-serif;color:#000;}
.key {font-size:75%;overflow:visible;}
.caphgh {font-weight:bold;}
.keynor {font-weight:normal;}
.keysub {font-weight:normal;font-size:85%;}
.keyshf,.keyctl,.keyalt {text-anchor:end;}
.keyshf {fill:#077BC7;} /* CIE-L*ch ( 50, 47,270) blue */
.keyctl {fill:#028946;} /* CIE-L*ch ( 50, 55,150) green */
.keyalt {fill:#ED0631;} /* CIE-L*ch ( 50, 88, 30) red */
.yel {fill:#CEB46C;} /* CIE-L*ch ( 74, 40, 90) */
.non {fill:none;}
.rec {stroke:#000;stroke-width:1;}

<svg class="key" x="631.5" y="253.5" width="69" height="69">
<rect class="rec yel" x="0.5" y="0.5" rx="4" ry="4" width="68" height="68"/>
<text class="caphgh" x="2.5" y="16.5">K</text>
<text class="keynor" x="2.5" y="22.5">
<tspan x="2.5" dy="14">Next</tspan>
<tspan x="2.5" dy="14">Near</tspan>
<tspan x="2.5" dy="14">Friend</tspan>
</text>
<text class="keysub" y="0.5">
<tspan class="keyshf" x="68.5" dy="12">Base</tspan>
<tspan class="keyctl" x="68.5" dy="12">Plant</tspan>
<tspan class="keyalt" x="68.5" dy="12">Jump</tspan>
</text>
</svg>
&#13;
问题在于最后三个tspans。它们都是正确对齐的,但在Chrome和Firefox中,三者中的最后一个比前两个更接近右边缘。在IE 11中,这不会发生。
谁能告诉我原因可能是什么?这是一个截图:
谢谢!
答案 0 :(得分:4)
这是由<tspan>
元素之间XML中的空格引起的。如果我们删除它,您的问题就会消失。
svg {font-family:Verdana,sans-serif;color:#000;}
.key {font-size:75%;overflow:visible;}
.caphgh {font-weight:bold;}
.keynor {font-weight:normal;}
.keysub {font-weight:normal;font-size:85%;}
.keyshf,.keyctl,.keyalt {text-anchor:end;}
.keyshf {fill:#077BC7;} /* CIE-L*ch ( 50, 47,270) blue */
.keyctl {fill:#028946;} /* CIE-L*ch ( 50, 55,150) green */
.keyalt {fill:#ED0631;} /* CIE-L*ch ( 50, 88, 30) red */
.yel {fill:#CEB46C;} /* CIE-L*ch ( 74, 40, 90) */
.non {fill:none;}
.rec {stroke:#000;stroke-width:1;}
&#13;
<svg class="key" x="631.5" y="253.5" width="69" height="69">
<rect class="rec yel" x="0.5" y="0.5" rx="4" ry="4" width="68" height="68"/>
<text class="caphgh" x="2.5" y="16.5">K</text>
<text class="keynor" x="2.5" y="22.5">
<tspan x="2.5" dy="14">Next</tspan>
<tspan x="2.5" dy="14">Near</tspan>
<tspan x="2.5" dy="14">Friend</tspan>
</text>
<text class="keysub" y="0.5">
<tspan class="keyshf" x="68.5" dy="12">Base</tspan><tspan
class="keyctl" x="68.5" dy="12">Plant</tspan><tspan
class="keyalt" x="68.5" dy="12">Jump</tspan>
</text>
</svg>
&#13;
可能有点不直观,但是当您在text-anchor: end
元素中设置<tspan>
时,它会覆盖所有文本,直到您更改文本位置为止。当您更改<tspan>
和x
时,会在下一个dy
元素处发生这种情况。因此,跨距之间的额外空间成为之前<tspan>
的一部分。所以你的第一行文字实际上是:
<tspan>Jump</tspan>{spaces}
这就是为什么该文本似乎被空格左移。
请注意,SVG文档中的默认空白行为是将连续空格折叠为单个空格。
您不需要在示例中使用<tspan>
。使用<text>
元素会更简单,更清晰。
svg {font-family:Verdana,sans-serif;color:#000;}
.key {font-size:75%;overflow:visible;}
.caphgh {font-weight:bold;}
.keynor {font-weight:normal;}
.keysub {font-weight:normal;font-size:85%;}
.keyshf,.keyctl,.keyalt {text-anchor:end;}
.keyshf {fill:#077BC7;} /* CIE-L*ch ( 50, 47,270) blue */
.keyctl {fill:#028946;} /* CIE-L*ch ( 50, 55,150) green */
.keyalt {fill:#ED0631;} /* CIE-L*ch ( 50, 88, 30) red */
.yel {fill:#CEB46C;} /* CIE-L*ch ( 74, 40, 90) */
.non {fill:none;}
.rec {stroke:#000;stroke-width:1;}
&#13;
<svg class="key" x="631.5" y="253.5" width="69" height="69">
<rect class="rec yel" x="0.5" y="0.5" rx="4" ry="4" width="68" height="68"/>
<text class="caphgh" x="2.5" y="16.5">K</text>
<g class="keynor">
<text x="2.5" y="22.5" dy="14">Next</text>
<text x="2.5" y="22.5" dy="28">Near</text>
<text x="2.5" y="22.5" dy="42">Friend</text>
</g>
<g class="keysub">
<text class="keyshf" x="68.5" y="0.5" dy="12">Base</text>
<text class="keyctl" x="68.5" y="0.5" dy="24">Plant</text>
<text class="keyalt" x="68.5" y="0.5" dy="36">Jump</text>
</g>
</svg>
&#13;