728x90
stroke-linecap 속성을 이용하자!
https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/stroke-linecap
<svg viewBox="0 0 6 6" xmlns="http://www.w3.org/2000/svg">
<!-- Effect of the (default) "butt" value -->
<line x1="1" y1="1" x2="5" y2="1" stroke="black" stroke-linecap="butt" />
<!-- Effect of the "round" value -->
<line x1="1" y1="3" x2="5" y2="3" stroke="black" stroke-linecap="round" />
<!-- Effect of the "square" value -->
<line x1="1" y1="5" x2="5" y2="5" stroke="black" stroke-linecap="square" />
<!--
the following pink lines highlight the
position of the path for each stroke
-->
<path d="M1,1 h4 M1,3 h4 M1,5 h4" stroke="pink" stroke-width="0.025" />
</svg>
728x90
'코드기록' 카테고리의 다른 글
[raspberry pi] 도커 설치 (0) | 2023.11.08 |
---|---|
[시큐어코딩]민감한 정보가 포함 된 오류 메시지 생성 (0) | 2023.11.07 |
[시큐어코딩]정수 오버플로 또는 랩 어라운드 (0) | 2023.11.07 |
[햐햐] 이클립스 && 오라클 하다가 그냥 기록 함 (0) | 2023.04.07 |
[css] user-select / 더블클릭시 파란색 없애기 (0) | 2023.03.03 |