私はコンテンツのためにを試して、音楽プレーヤーのプレイヤーバーにはposition: fixed;
を使用して、ページの下部にそれを保持します。IframeとFirefox/IEのバグ
デモ: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
どうすればこの問題を解決できますか?
作品にそれを変更することがあります! – Hellnar