命名空间与SVG样式控制
展示
我是普通a元素,颜色是什么?
代码
-
HTML:
<p>我是<a href=""普通>a元素</a>,颜色是什么?</p> <svg height="40"> <a xlink:href=""> <text x="0" y="20">我是svg中的a元素</text> </a> </svg>
-
CSS:
@namespace "http://www.w3.org/1999/xhtml"; @namespace svg "http://www.w3.org/2000/svg"; a { color: blue; } svg|a { color: red; fill: currentColor; }