Technology

Canvas width and height

6 March 2014
31 words • 1 minute

When using canvas, remember to add width and height attributes to the markup

<canvas width="200" height="300"></canvas>

even if you have defined them in the CSS, otherwise you might see some unexpected code behavior.