79708746

Date: 2025-07-21 08:10:39
Score: 0.5
Natty:
Report link

Canvas is by default an inline element. And inline elements have a white space underneath them, for the descenders, parts of the letter like "g" or "y" that are below the baseline.

So, just set your canvas to block:

canvas.style.display = 'block';

Or with CSS.

And the meta viewport is a comma-separated list:

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): Can
  • Low reputation (0.5):
Posted by: Prango