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