Home > Windows > Internet Explorer > ver.6 body要素以外で背景画像を固定できない

body要素以外で背景画像を固定できない

body要素以外の要素で background-attachment: fixed; による背景画像の固定を行っても、背景画像はページスクロールに合わせて動いてしまう。

例示

<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

固定した背景画像を、中央部に横一列に並べています。

スクリーンショット

N7N7.0での表示(標準モード)

WinIE6WinIE6.0での表示(標準モード)

補足

background-attachmentプロパティの指定は、'fixed' を 'scroll' が指定されたものとして扱ってもよいとされているので、仕様に反した実装ではありません。

修正状況

WinIE6.0では標準・互換モードともに背景画像がスクロールに合わせて移動します。

Home > Windows > Internet Explorer > ver.6 body要素以外で背景画像を固定できない

Search
オススメ書籍
Feeds

Return to page top