【发布时间】:2012-01-13 18:10:07
【问题描述】:
我尝试使用<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
我该如何解决这个问题?
【问题讨论】:
标签: iframe