-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnested-iframe2.phtml
More file actions
41 lines (36 loc) · 862 Bytes
/
nested-iframe2.phtml
File metadata and controls
41 lines (36 loc) · 862 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
39
40
41
<!doctype html>
<html>
<head>
<title>Nested iframe 2:: scroll test</title>
<style media="screen">
html,
body {
margin: 0;
}
body {
background: pink;
}
html,
body,
.content-container,
iframe {
height: 100%;
width: 100%;
}
iframe {
border: 0;
}
.content-container {
position: relative;
-webkit-overflow-scrolling: touch;
overflow: auto;
font-size: 1px;
}
</style>
</head>
<body>
<div class="content-container">
<iframe src="content-iframe.phtml"></iframe>
</div>
</body>
</html>