[fill](https://css-tricks.com/almanac/properties/f/fill/) ``` // 正常的写法 => <path fill="#fff" ... /> .attr('fill', 'red') => <path style="fill: #fff;" ... /> // 另一种写法 .style('fill', 'red') ``` >两种都是有效的,上面的链接中提到 > >`This will override a presentation attribute <path fill="#fff" ... />` > > `This will not override an inline style e.g. <path style="fill: #fff;" ... />` >不是很明白这里什么意思
fill