我在下面的示例中將圖像設置爲右邊框到#left時出現問題。目前邊框出現,但它的右側約爲200px,而右側爲500px。如何 - 右邊框的CSS背景
任何想法發生了什麼問題?
謝謝!
<html>
<STYLE type="text/css">
#wrapper, #left, #right, .sub_box
{ border: 1px solid black; }
.sub_box
{ float:left; }
#left
{ background: url("dots.gif") right repeat-y; }
</STYLE>
<div id="wrapper" style="width:882px">
<div id="left" style="width:500px;float:left">
<div class="sub_box" style="width:200px">
<p>sub box</p>
</div>
<div class="sub_box" style="width:200px">
<p>sub box</p>
</div>
<div class="sub_box" style="width:200px">
<p>sub box</p>
</div>
</div>
<div id="right" style="width:200px;float:right">
<p>Right column here</p>
</div>
</div>
</html>
也許你錯過了«top»?背景:url(「dots.gif」)right top repeat-y; – podeig 2012-04-26 11:24:53
@rix嘗試我的答案我認爲這將解決您的問題。 – 2012-04-26 11:29:07
嗨,感謝您的回覆,但請嘗試一下代碼。這是行不通的!! – rix 2012-04-26 11:41:57