何らかの奇妙な理由で背景画像が IE に表示されません。background-image の代わりに background のみを使用し、png、gif、jpg を使用し、画像パスを引用符と二重引用符で囲んで、画像へのフル パスを使用しようとしました。基本的に、IEの背景画像に関してネット上で提案されているすべてを試しました
html, body {
margin: 0;
padding: 0;
width: 1008px;
margin: 0 auto;
font-family:"Trebuchet MS";
font-size:14px;
line-height: 190%;
text-align:left;
text-decoration: italic;
background-image: url(../images/bgr_top.jpg), url(../images/bgr_bottom.jpg);
background-repeat: repeat-x, repeat-x;
background-position:center top, center bottom;
}
私が持っている唯一の疑いは、ページの上部と下部に 1 つずつ、2 つの画像を使用していることです。閉じ括弧の後のスペースについても読んでください。ただし、別の行で background-repeat: を使用しているため、関連性があるかどうかはわかりません。
他の提案は大歓迎です:)