Make Html Canvas Fit Screen
I would like to make it so that the HTML Canvas element has a width = to the browser window width, and height = the browser window height. Below is the code I use. HTML:
Solution 1:
Try this for your CSS:
body {
margin: 0;
}
#gameCanvas {
width: 100vw;
height: 100vh;
}
Post a Comment for "Make Html Canvas Fit Screen"