blob: a045fbb229da62d2f0763cd6246705d11387f0fa (
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
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
|
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>click5</title>
<style>
* { margin: 0; padding: 0; }
body {
}
#box {
width: 160px;
height: 160px;
position: absolute;
left: 0;
top: 0;
background: #CCC;
border-radius: 5px;
padding: 10px;
}
#box a {
font-size: 20px;
}
</style>
</head>
<body>
<h1>click5</h1>
<input />
<input type="checkbox" />
<input type="radio" name="bar" />
<input type="radio" name="bar" />
<div id="box">
<a href="http://example.com">example.com</a>
<button>Button</button>
<input />
<div>
<input type="checkbox" />
<input type="radio" name="foo" />
<input type="radio" name="foo" />
</div>
</div>
<script src="demo.js"></script>
</body>
</html>
|