具有类似的图像:
<img src="/img/image.svg" width="15" height="15">
应该如何改变其颜色?
我试图在img的父级中添加一个CSS类
img {
color: red;
}
或在img标签<img src="/img/image.svg" width="15" height="15" fill="red">
或
<img src="/img/image.svg" width="15" height="15" ng-style="{'color': 'red'}">
仍然不会改变图像的颜色。