是否可以使用父文档中的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>