change svg color on hover, css

43

svg {    width: 100px;    height: 100px;}svg:hover path {    fill: red;}
<style>
.x-svg:hover g, .x-svg:hover path{
          fill: red;
      }
</style>

Comments

Submit
0 Comments