目标SVG作为OBJECT包含来自父文档的CSS

时间:2014-05-27 23:36:49

标签: html css svg

是否可以使用父文档中的CSS来定位OBJECT标记内的SVG元素?

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">

        /* This should target the element with id `icon-so`
           inside the `img/so.svg` file */
        #icon-so{
            fill: red;
        }

    </style>
</head>
<body>

  <object type="image/svg+xml" data="img/icon-so.svg">so logo</object>

</body>
</html>

0 个答案:

没有答案