Styling mit CSS
hello.css
rect {
fill: red;
stroke: blue;
}
hello.svg
<?xml version="1.0"
?>
<?xml-stylesheet
href="hello.css"
type="text/css"?>
<svg>
...
<rect .../>
</svg>
...
<line x1="1cm"
y1="1cm" x2="1cm" y2="9cm“
style="stroke-width:10;“/>
...