files/en-us/web/svg/reference/attribute/style/index.md
The style attribute allows to style an element using {{Glossary("CSS")}} declarations. It functions identically to the style attribute in HTML.
You can use this attribute with any SVG element.
html,
body,
svg {
height: 100%;
}
<svg viewBox="0 0 100 60" xmlns="http://www.w3.org/2000/svg">
<rect
width="80"
height="40"
x="10"
y="10"
style="fill: skyblue; stroke: cadetblue; stroke-width: 2;" />
</svg>
{{EmbedLiveSample("Example", "200", "120")}}
<style>
{{Specifications}}
{{Compat}}
style attribute