<g>
다른 svg element들을 group하는데 사용하는 태그입니다.
g에 준 태그들은 자식 태그들에게 상속됩니다. 편리하죠!
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<!-- Using g to inherit presentation attributes -->
<g fill="white" stroke="green" stroke-width="5">
<circle cx="40" cy="40" r="25" />
<circle cx="60" cy="60" r="25" />
</g>
</svg>
'📈 js 그래픽 > svg 1.1' 카테고리의 다른 글
svg element : 기본 모양들 (0) | 2021.01.17 |
---|---|
svg 태그 소개 (0) | 2021.01.17 |