body要素以外の要素で background-attachment: fixed; による背景画像の固定を行っても、背景画像はページスクロールに合わせて動いてしまう。
- Category: Internet Explorer, Windows, ver.6
- Tag: background, body
例示
<style type="text/css">
<!--
.aaa {
background-image: url(http://css-bug.jp/img/common/img01.png);
background-repeat: repeat-x;
background-attachment: fixed;
background-position: center;
}
-->
</style>
<div class="aaa">
<p>A</p>
<p>B</p>
<p>C</p>
</div>
A
B
C
固定した背景画像を、中央部に横一列に並べています。
スクリーンショット
N7.0での表示(標準モード)
WinIE6.0での表示(標準モード)
補足
background-attachmentプロパティの指定は、'fixed' を 'scroll' が指定されたものとして扱ってもよいとされているので、仕様に反した実装ではありません。
修正状況
WinIE6.0では標準・互換モードともに背景画像がスクロールに合わせて移動します。


