Can I change the fill color of an svg path with CSS?

后端 未结 8 1680
抹茶落季
抹茶落季 2020-11-28 21:09

I have the following code:

  
     

        
8条回答
  •  温柔的废话
    2020-11-28 21:30

    you put this css for svg circle.

    svg:hover circle{
        fill: #F6831D;
        stroke-dashoffset: 0;
        stroke-dasharray: 700;
        stroke-width: 2;
    }
    

提交回复
热议问题