repeat-x には 1 つの問題があります。私のcssコードはこれです:
#header {
}
#header_left {
background:url("../img/header_l.png") no-repeat;
float:left;
width:341px;
height:258px;
}
#header_content {
background:url("../img/header_c.png") repeat-x;
width:32px;
height:258px;
float:left;
}
#header_right {
background:url("../img/header_r.png") no-repeat;
float:right;
width:341px;
height:258px;
}
そしてhtmlコード:
<div id="header">
<div id="header_left"></div>
<div id="header_content"></div>
<div id="header_right"></div>
</div>
ただし、画像 header_c.png は 1 回だけ繰り返されます。この問題を解決するにはどうすればよいですか?
スクリーンショットは次のとおりです: http://i.stack.imgur.com/mo0JW.png、 header_c.png は1回繰り返され、その後空白が残ります。