CSS Borders out of the body
Hi, I tried to add simple borders arround my canvas, at the upper left corner it's work but at the lower right ... border brim over :( ############################################## This is my javascript : //VARIABLES var WIDTH = 500; var HEIGHT = 500; var FPS = 60; //CANVAS INIT c = document.createElement('canvas'); document.body.appendChild(c); ctx = c.getContext('2d'); WIDTH = window.innerWidth; HEIGHT = window.innerHeight; c.setAttribute('width', WIDTH); c.setAttribute('height', HEIGHT); c.setAttribute('id', 'canvas'); //FUNCTIONS function clear(){ ctx.fillStyle = '#333'; ctx.fillRect(0, 0, WIDTH, HEIGHT); } function update(){ clear(); } setInterval(update, 1000/FPS); ########################################### And this is my css : body{ margin: 0px; padding: 20px; overflow: hidden; background-color: #333; } #canvas{ border : dashed white; }