首页 > 问答 > 正文
是否可以为 SVG <path> 元素设置 background-image?
<path>
background-image
例如,如果我设置元素 class="wall",则 CSS 样式 .wall {fill: red;} 有效,但 .wall{background-image: url(wall.jpg)}没有,.wall {background-color: red;} 也没有。
class="wall"
.wall {fill: red;}
.wall{background-image: url(wall.jpg)}
.wall {background-color: red;}
P粉9981006482024-01-29 00:10:37
您可以通过将背景设置为图案来实现:
根据您的图像调整宽度和高度,然后从路径中引用它,如下所示:
工作示例