633344-1-ref.html (622B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 .outer { 6 background:yellow; 7 position:absolute; 8 left:100px; 9 top:100px; 10 width:420px; 11 height:140px; 12 line-height:28px; 13 } 14 .inner { 15 float:left; 16 width:140px; 17 height:15.4px; 18 background:black; 19 } 20 canvas { 21 display:block; 22 float:left; 23 } 24 </style> 25 </head> 26 <body> 27 <div class="outer"><div class="inner"></div><canvas id="c" width="10" height="10" style="width:14px; height:14px;"></canvas></div> 28 <script> 29 var ctx = document.getElementById("c").getContext("2d"); 30 ctx.fillStyle = "black"; 31 ctx.fillRect(0, 0, 10, 10); 32 </script> 33 </body> 34 </html>