admin管理员组文章数量:1418717
I am trying to place two canvas nearby. But unfortunately when i include two canvas it automatically produces a space between two canvas. How to remove that empty space or how to join that two canvas. Here is my fiddle Fiddle
here is my code:
<canvas id="button" width="30" height="30" style="border:1px solid #d3d3d3;background-color:green;"></canvas>
<canvas id="button" width="30" height="30" style="border:1px solid #d3d3d3;background-color:green;"></canvas>
here is the script:
window.onload=function()
{
var canvas = document.getElementById("button");
var ctx = canvas.getContext('2d');
}
I am trying to place two canvas nearby. But unfortunately when i include two canvas it automatically produces a space between two canvas. How to remove that empty space or how to join that two canvas. Here is my fiddle Fiddle
here is my code:
<canvas id="button" width="30" height="30" style="border:1px solid #d3d3d3;background-color:green;"></canvas>
<canvas id="button" width="30" height="30" style="border:1px solid #d3d3d3;background-color:green;"></canvas>
here is the script:
window.onload=function()
{
var canvas = document.getElementById("button");
var ctx = canvas.getContext('2d');
}
Share
Improve this question
asked Dec 19, 2012 at 3:55
Praveen SinghPraveen Singh
5422 gold badges10 silver badges23 bronze badges
1 Answer
Reset to default 8The newline in the HTML is being treated as a space. Simply get rid of the whitespace between the two canvases:
<canvas id="button" width="30" height="30" style="border:1px solid #d3d3d3;background-color:green;">
</canvas><canvas id="button" width="30" height="30" style="border:1px solid #d3d3d3;background-color:green;">
</canvas>
See fiddle.
Or use:
<canvas id="button" width="30" height="30" style="border:1px solid #d3d3d3;background-color:green;"></canvas><!--
--><canvas id="button" width="30" height="30" style="border:1px solid #d3d3d3;background-color:green;"></canvas>
本文标签: javascriptReduce the space between two canvas htmlStack Overflow
版权声明:本文标题:javascript - Reduce the space between two canvas html - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745290004a2651735.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论