我把一张图切成两张图。一张当背景。一张当图像。。我就写成 CSS: ------------------------------------------- #top1 { width:783px; height:30; background:url(../images/top1.gif); text-align:right; } #top2 { width:783px; height:34;} ====================== HTML ------------------------------------------------- <!--Header--> <div id="header"> <div id="top1"></div> <div id="top2"><img src="images/top2.gif" /></div> </div> <!--Header End--> ------------------------------------------------- 这样。。可上面当背景的却变形了。。好像在top1里写的height值没有起作用。。