Make canvas fill the whole page

Viewed 42474

How can I make canvas be 100% in width and height of the page?

7 Answers
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;

maybe that easy?

Related