geometry-background-image-tiled-003-ref.html (369B)
1 <!DOCTYPE html> 2 <html> 3 <style> 4 html, body { margin: 0; padding: 0; } 5 </style> 6 <body> 7 <canvas id ="canvas" width="60" height="80" style="position:relative; top:10px; left:20px"></canvas> 8 <script> 9 var canvas = document.getElementById('canvas'); 10 var context = canvas.getContext("2d"); 11 context.fillStyle = 'green'; 12 context.fillRect(0, 0, 60, 80); 13 </script> 14 </body> 15 </html>