Use CSS To Style A SVG

html

<svg version="1.1" width="200" height="200" xmlns="http://www.w3.org/2000/svg">
  <rect class="svgRect" width="100%" height="100%" />
</svg>
            

css

.svgRect {
  fill: goldenrod;
}