gpt4 book ai didi

Iframe 和 Firefox/IE 错误

转载 作者:行者123 更新时间:2023-12-02 08:58:29 26 4
gpt4 key购买 nike

我尝试<iframe>内容及使用position: fixed;音乐播放器播放栏将其保留在页面底部。

演示:http://jsfiddle.net/ThinkingStiff/vhLeE/

HTML:

<iframe src="http://thinkingstiff.com"></iframe>
<div id="player">music player</div>

CSS:

body {
margin: 0;
height: 100%;
}

iframe {
border: 0;
display: block;
height: 100%;
width: 100%;
}

#player {
background-color: black;
bottom: 0;
color: white;
left: 0;
position: fixed;
height: 30px;
width: 100%;
}

遗憾的是,这对于 IE 或 Firefix 9 来说效果不佳,它只是在一个小高度窗口中显示内容:http://cl.ly/0y0T2I1R042c3G002H3y

我该如何解决这个问题?

最佳答案

我以前也曾遇到过类似的问题,幸运的是,解决方法非常简单——IE 和 Firefox 只需要将 html 高度设置为 100% 即可。因此,将样式的第一个元素更新为:

html, body {
margin: 0;
height: 100%;
}

这应该可以解决问题。

关于Iframe 和 Firefox/IE 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8720136/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com