HTML 5에서 캔버스를 가운데에 맞추려면 div 태그에 캔버스 태그를 포함합니다. 그런 다음 div 태그를 가운데 정렬할 수 있습니다. 이렇게 하면 캔버스도 가운데 정렬됩니다.
예시
<!DOCTYPE html>. <html> <body> <div style = "text-align:center;"> <canvas style = "background-color:GREEN;">This is my canvas</canvas> </div> </body> </html>