一个新手问题。 SVG文本填充似乎不会填写Chrome中的文本(Chrome Canary中的相同问题)。 Firefox和IE运行良好。也许有人会指点我的解决方案吗?这是HTML / SVG文档:
<!DOCTYPE html>
<html>
<head>
<title>SVG Text</title>
</head>
<body>
<h2>
Text Example
</h2>
<svg id="svgText" height="250" width="600">
<text id="txt" x="100" y="250" font-family="sans-serif" font-size="200" font-weight="bolder"
stroke="red" fill="red">TEXT</text>
</svg>
</body>
</html>
&#13;
非常感谢!!
[请参阅下面的屏幕截图(Win7上的Google Chrome)。注意X的边缘以及第一个T的右边缘。]
答案 0 :(得分:1)
好的,它似乎是一个Chrome错误(在Windows上)。我在这里报告https://code.google.com/p/chromium/issues/detail?id=478384
谢谢大家的评论!非常感谢。