SVG/Sklowanie
< SVG
jednostki
edytujidentyfikatory jednostek wartości numerycznych
- em
- ex
- px = piksele
- pt
- pc
- cm = centymetry
- mm = milimetry
- in (inches = cale)
- % (percentages = procenty)
Wartości bez identyfikatora są w wartościach użytkownika ( zwykle pixele)
współrzędne
edytujWspółrzędne[1]
viewport
edytuj <!-- the viewport will be 800px by 600px -->
<svg width="800" height="600">
<!-- SVG content drawn onto the SVG canvas -->
</svg>
viewBox
edytujSyntax:[4]
viewBox = <min-x> <min-y> <width> <height>
Przykład:
<!-- The viewbox in this example is equal to the viewport, but it can be different -->
<svg width="800" height="600" viewbox="0 0 800 600">
<!-- SVG content drawn onto the SVG canvas -->
</svg>