iframe中的fixed定位


字数:408 阅读时长:1分钟 阅读:85

position 属性规定元素的定位类型。任何元素都可以定位,不过绝对或固定元素会生成一个块级框,而不论该元素本身是什么类型。相对定位元素会相对于它在正常流中的默认位置偏移。
其中fixed 生成绝对定位的元素,相对于浏览器窗口进行定位。但是页面中如果嵌套了iframe,该是怎么定位呢?一起来看看。

CSS

  • 主页面index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>iframe中的fixed定位</title>
<style>
* {
padding: 0;
margin: 0;
}

html, body {
height: 100%;
background-color: #f1f1f1;
}
</style>
</head>
<body>

<br>
<br>

<iframe src="./innerPage.html" frameborder="0" width="100%" height="200px"></iframe>

</body>
</html>
  • iframe嵌套页面innerPage.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>innerPage</title>
<style>
* {
padding: 0;
margin: 0;
}

html, body {
height: 100%;
background-color: #f8ac59;
}

.fixed-box {
width: 100px;
height: 100px;
background-color: #1ab394;
position: fixed;
bottom: 20px;
right: 20px;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
</style>
</head>
<body>

<br>
<br>

<h1>这是一个iframe页面区域</h1>

<div class="fixed-box">
iframe inner
fixed-box
</div>

</body>
</html>
  • 浏览器展示效果

iframe-Fixed

总结

fixed相对于浏览器窗口进行定位。其中iframe是一个独立的窗口,所以在iframe中的fixed定位,是相对于当前所在的iframe


欢迎访问:个人博客地址

本文作者: Tiven
发布时间: 2019-09-02
最后更新: 2023-07-17
本文标题: iframe中的fixed定位
本文链接: https://www.tiven.cn/p/702202dd/
版权声明: 本作品采用 CC BY-NC-SA 4.0 许可协议进行许可。转载请注明出处!
欢迎留言,提问 ^_^
个人邮箱: tw.email@qq.com
notification icon
博客有更新,将会发送通知给您!