我将SVG文件作为对象嵌入,如下所示
<object type="image/svg+xml" data="img/icon-info.svg" id='ree' style="width:20px;height:20px;">
我在SVG文件中做了如下样式:
<style type="text/css">
<![CDATA[
g {
fill: red;
stroke: blue;
stroke-width: 3
}
]]>
</style>
我现在的问题是,如何通过将鼠标悬停在Html文件中的嵌入对象上来更改其颜色/填充?