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