NetScape7.1でbackground-position :0 bottom;に配置した背景が出ない

忘れがちなのでメモ
背景をボックスの下部に配置しようとして、下記のようなCSS書くこともあると思うんだけど、
なんでかNetscape7.1でbackground-position: 0 bottom;がダメみたい。
対応策は、0をなくして記述。忘れるなよオレ。

■Netscape7.1でうまくレンダリングしてくれない例

background: #xxx url(hoge.gif) no-repeat 0 bottom;

■対応策

background: #xxx url(hoge.gif) no-repeat bottom;
もしくは
background: #xxx url(hoge.gif) no-repeat left bottom;

この記事を書いた人