我可以设置根 svg 元素的背景颜色,但似乎无法让它与死者元素一起使用。
风格
svg {
background:#ddd;
}
svg > svg{
background:#444;
}
rect {
fill:#55c;
}
马克鲁普
<svg>
<svg x="0px" y="0px" width="50%" height="50%">
<rect x="33%" y="33%" width="33%" height="33%"/>
</svg>
<svg x="50%" y="50%" width="50%" height="50%">
<rect x="33%" y="33%" width="33%" height="33%"/>
</svg>
<rect x="16.6%" y="66%" width="16.6%" height="16.6%"/>
<rect x="66%" y="16.6%" width="16.6%" height="16.6%"/>
</svg>