blob: b4aa287ee11490f613295ff422ba6c6721507d1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<style>
svg {
width: 250px;
height: 250px;
background: green;
}
</style>
<svg>
<rect x="100" y="-50" width="100" height="100" fill="green"
transform="rotate(45)"/>
</svg>
|