background svg color change with css code example
Category: CSS code examples
<div class="lb"></div> <style> .lb { height: 100px; width: 100px; background-color: red; -webkit-mask-image: url('Facebook.svg'); mask-image: url(Facebook.svg); } .lb:hover { background-color: blue; } </style>