img src SVG changing the styles with CSS

后端 未结 22 2019
予麋鹿
予麋鹿 2020-11-22 01:16

html

\"Logo\"

css

.logo-img path {
           


        
22条回答
  •  闹比i
    闹比i (楼主)
    2020-11-22 01:47

    Try pure CSS:

    .logo-img {
      // to black
      filter: invert(1);
      // or to blue
      // filter: invert(1) sepia(1) saturate(5) hue-rotate(175deg);
    }
    

    more info in this article https://blog.union.io/code/2017/08/10/img-svg-fill/

提交回复
热议问题