-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
57 lines (51 loc) · 1.27 KB
/
test.html
File metadata and controls
57 lines (51 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="12.js"></script>
<style>
#productArea {
background-color: pink;
}
#a {
background-color: green;
}
#b {
background-color: yellow;
}
div {
padding: 20px;
margin: 10px;
}
.list li{
background-color: black;
color: white;
margin: 10px 0;
display: flex;
justify-content: space-between;
}
.closeBtn{
background-color:white;
color:red;
cursor: pointer;
}
</style>
</head>
<body>
<div id="hello">Hello</div>
<div id="productArea">
<a href="#" data-product-id="u-123">no.123</a>
<a href="#" data-product-id="u-456">no.456</a>
<a href="#" data-product-id="u-789">no.789</a>
</div>
<div id="shoppingCart">
<button id="clear">清空</button>
<ul class="list">
<span id="state">目前商品</span>
</ul>
</div>
</body>
</html>