I want to delete the canvas space between the first and second lines.
<canvas></canvas><canvas></canvas>... more <canvas>
and, I want to overlap all canvas by one pixel.
Is that possible?
I want to delete the canvas space between the first and second lines.
<canvas></canvas><canvas></canvas>... more <canvas>
and, I want to overlap all canvas by one pixel.
Is that possible?
Just apply this style:
canvas {
border:1px solid;
margin-bottom: -5px;
margin-right: -1px;
}
canvas {
border:1px solid;
margin: 0;
width: 49.5%;
float: left;
}