blob: 1311a77196f89d6f81d899bafc84cd256a2099c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
#layer1 {
border: 10px, solid;
}
</style>
</head>
<body>
<div style="position: relative;">
<canvas id="layer1" width="200" height="200"
style="position: absolute; left: 0; top: 0; z-index: 0;"></canvas>
<canvas id="layer2" width="100" height="100"
style="position: absolute; left: 0; top: 0; z-index: 1;"></canvas>
</div>
</body>
</html>
|