Skip to content

Commit 220f25c

Browse files
authored
Make iframe borderless
1 parent e67077c commit 220f25c

1 file changed

Lines changed: 23 additions & 1 deletion

File tree

interview/index.html

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,23 @@
1-
<iframe src="https://felispolarstern.github.io/autism-participation-study-website/" width="100%" height="100%"></iframe>
1+
<style>
2+
html, body {
3+
margin: 0;
4+
padding: 0;
5+
height: 100%;
6+
}
7+
8+
.iframe-container {
9+
position: fixed;
10+
inset: 0;
11+
}
12+
13+
iframe {
14+
width: 100%;
15+
height: 100%;
16+
border: none;
17+
display: block;
18+
}
19+
</style>
20+
21+
<div class="iframe-container">
22+
<iframe src="https://felispolarstern.github.io/autism-participation-study-website/"></iframe>
23+
</div>

0 commit comments

Comments
 (0)