我需要使用CSS设置svg图像的样式。我的标记:
+ static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
icon.svg:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css">
img .shape
{
fill: #ff0000;
}
</style>
</head>
<body>
<img src="images/icon.svg" alt="" />
</body>
</html>
我尝试了一些css选择器。他们都没有工作。