通过执行与此( )类似的代码d3.select(..).append("div")
,我得到div
具有此类样式属性的 s:
<div id="id6"
style="
background-image: initial;
background-attachment: initial;
background-origin: initial;
background-clip: initial;
background-color: rgb(255, 255, 255);
background-position: initial initial;
background-repeat: initial initial; ">
5
</div>
问题:
- a)
initial
从哪里来?b) 是否可以重新定义“默认值”? - d3 在属性中乱扔不必要的值可以吗?
- Chrome 这么说
background-position: initial initial;
并且background-repeat: initial initial;
是Invalid property value
s。是d3的bug吗?我们如何处理这个错误?