79548122

Date: 2025-04-01 08:49:33
Score: 0.5
Natty:
Report link

I was able to do this with css. Add 'overflow: scroll' to 'body' and set a size for a div containing the 'canvas' element:

body {
    background-color: white;
    overflow: scroll;
}
#canvasdiv {
    width: 1200px;
    height: 900px;
    margin: 50px 0 0;
}
#canvas {
    width: auto !important;
    height: auto !important;
}
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: jamminjames