Can you explain why the div is only displaying a vertical scrollbar?
Although the canvas is larger than the div in both dimensions:
div {
padding-top: 2px;
height: 709px;
width: 889px;
overflow: auto;
}
<div>
<canvas width="1405" style="" height="2023"></canvas>
</div>
I would appreciate any clarification on this matter.