본문 바로가기

html

[html]서명 js에서 캔버스 canvas 사이즈 조절(서명,사인,싸인)

canvas에서 style속성이 아닌 width 속성으로 조절하면 제대로 영역이 잡힘

// 가능
<canvas width="300" height="150"></canvas>

// 불가능
</canvas><canvas style="width: 300px; height:150px"></canvas>

 


top