579349-1.html (344B)
1 <!DOCTYPE html> 2 <html> 3 <body> 4 <canvas id="c" width="500" height="200"></canvas> 5 <div style="position:absolute; left:0; top:0; height:100px; width:100%; background:yellow"></div> 6 <script> 7 var c = document.getElementById("c"); 8 var ctx = c.getContext("2d"); 9 ctx.fillStyle = "blue"; 10 ctx.fillRect(0, 0, c.width, c.height); 11 </script> 12 </body> 13 </html>