最佳答案
好吧,我要疯了。我已经开始试验 SVG 了。使用 SVG 并将 CSS 类应用于其中,这种方法非常有效。我只是不知道我做错了什么,但我只是不能让类工作在一个 svg 文本元素。我把衣服都脱光了,这就是我得到的:
<!DOCTYPE html>
<html>
<head>
<meta charset='UTF-8'>
<title>Playground</title>
</head>
<body>
<style type="text/css">
.mainsvg {
height: 320px;
border: 1px solid red;
width: 400px;
}
.caption {
color: yellow;
}
</style>
<h2>SVG - Sandbox</h2>
<div>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" class="mainsvg">
<text x="65" y="40" class="caption">Fact</text>
</svg>
</div>
</body>
</html>
根据 http://www.w3.org/TR/SVG/styling.html#ClassAttribute的说法,这个应该可以..。
对于改变什么或者其他选择,有什么提示或者建议吗?