-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.html
More file actions
38 lines (35 loc) · 723 Bytes
/
sample.html
File metadata and controls
38 lines (35 loc) · 723 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta charset="UTF-8">
<title>:empty bug? with Android</title>
<style>
body div ,body section{
background:#ddd;
border:1px solid #444;
margin:20px;
}
div:empty{
height:20px;
background:#ff0000;
}
</style>
</head>
<body>
<h1>:empty bug? with Android</h1>
<h2>not empty div</h2>
<div><p>1 Hawaii</p></div>
<h2>not empty div , write tag in single line.</h2>
<div>
<p>2 Hawaii</p>
</div>
<h2>empty div , write tag in single line.</h2>
<div></div>
<h2>empty div , write tag two line.</h2>
<div>
</div>
<h2>not empty section , write tag in single line.</h2>
<section><p>Hawaii</p></section>
</body>
</html>