How do I modify the color of a SVG image with CSS when it is inside an tag? I have this image:
<object class="arrow" type="image/svg+xml" data="fotos/arrow.svg"></object>
and I tried to change its color in CSS like that but it's not working
.arrow {
color:#B86e25;
fill:#B86e25;
}