mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-31 03:51:38 +09:00
11 lines
522 B
XML
11 lines
522 B
XML
<svg xmlns='http://www.w3.org/2000/svg'>
|
|
<g transform="translate(30,30)">
|
|
<!-- transform-origin specifies a point relative to the top left of the
|
|
element's fill bbox when transform-box is set to 'fill-box', with
|
|
percentage values resolved against the size of the fill bbox.
|
|
-->
|
|
<rect x='10' y='10' width='100' height='100' fill='blue' stroke-width='20' stroke='black'
|
|
style="transform:rotate(90deg); transform-origin:0px calc(110% - 10px);
|
|
transform-box:fill-box;"/>
|
|
</g>
|
|
</svg>
|