My goal is to have two canvas squares stacked on top of each other. While I am familiar with drawing on canvas, I need assistance in placing one canvas on top of another. Despite my attempts at setting the position, I have not been successful.
<canvas id="Canvas1" width="350" height="300"
style="border:6px solid black;">
</canvas>
<canvas id="Canvas2" width="350" height="300"
style="border:6px solid black;">
</canvas>
No matter what I do, these canvases remain separated and do not align as desired.