Style SVG loaded to HTML as content tag with CSS [closed]
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 2 years ago . I have 3 files: index.html <!DOCTYPE html> <html> <head> <link type="text/css" rel="stylesheet" href="style.css" /> </head> <body> <i class="logo myRed" aria-hidden="true"></i> </body> </html> style.css .logo:before { content: url("logo.svg"); } .myRed { color: #ff2000; } logo.svg