1580534.html (387B)
1 <!DOCTYPE HTML> 2 <html> 3 <body> 4 <div style="transform:translate(0.4px); position:absolute; top:0px;"> 5 <canvas style="margin-left:0.4px; border:1px solid red; display:block" width="10" height="10" id="c"></canvas> 6 </div> 7 <script> 8 var c = document.getElementById("c"); 9 var ctx = c.getContext('2d'); 10 ctx.fillStyle = "black"; 11 ctx.fillRect(0, 0, c.width, c.height); 12 </script> 13 </body> 14 </html>