html
<svg viewBox="0 0 100 100" width="100" height="100">
<defs>
<path id="circle"
d="
m 50, 50
m -37, 0
a 37,37 0 1,1 74,0
a 37,37 0 1,1 -74,0"/>
</defs>
<text font-size="17">
<textPath xlink:href="#circle">
You spin me right round, baby...
</textPath>
</text>
</svg>
css
svg {
fill: currentColor;
height: auto;
max-width: 66vmin;
transform-origin: center;
width: 66%;
}
'HTML,CSS' 카테고리의 다른 글
마우스오버시 이미지 확대 (0) | 2022.05.04 |
---|---|
가로세로 비율을 유지하는 반응형 박스 padding-top, bottom (0) | 2022.04.15 |