<!--[if lte IE 8]>
.food_disp{
background: url("../images/food.png") center bottom no-repeat;
padding: 80px;
}
<![endif]-->
<!--[if !IE]>
.food_disp {
background: url("../images/food.png") center bottom no-repeat;
padding: 50px;
}
<![endif]-->
上記のcssを試して、上記のように設定されたパディングで背景として画像を表示しました。翻訳者/通訳者に、クライアント ブラウザのバージョンが 8 以下の場合は、表示用に画像ブロックにもう少しパディング距離を追加するか、これが IE ではない場合は、既に定義されているブロックを使用するよう伝えたいと思います。画像表示は、条件節が追加されていなくても問題ありません。
.food_disp {
background: url("../images/food.png") center bottom no-repeat;
padding: 50px;
}
使用されている。ただし、条件を追加すると、画像が消えます。