I have my canvas
in html5:
<canvas></canvas>
I want the canvas to occupy every available area of the browser, I tried to do this:
canvas{
display: block;
width: 100%;
Height: 100%;
border: 1px solid #c33;
}
Width
is occupying everything, but Height
does not occupy everything. Can you do all your browser space?