【发布时间】:2021-04-16 23:25:22
【问题描述】:
import Image from 'next/image'
...
<Image src="/emotion.svg" alt="emtion" width={50} height={50} />
我想更改 next/image 中的 SVG 颜色。
但在 CSS 中,
img {
fill="#ffffff"
}
不工作。
我该如何解决这个问题?
【问题讨论】:
-
您需要定位正确的 SVG 元素以应用
fill属性。将其应用于<img>不会有任何效果。
标签: css reactjs next.js styled-components nextjs-image