Here你可以看到我的問題。背景圖像被設置爲重複整個高度,但它不像想要的那樣工作。背景圖片不會重複全高
我的CSS
#wrapper {
margin: 0px;
padding: 0px;
background: url(img02.jpg) repeat-x left top;
}
我嘗試添加theese線
body {
margin: 0;
padding: 0;
background: #F7F7F7 url(img01.jpg) repeat left top;
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 14px;
color: #5A554E;
/* theese lines added*/
min-height:100%;
height:auto;
}
但還是背景圖像不會重複所有的高度。
您只設置repeat-x,它指示它在x軸上重複 – 2014-10-05 12:49:48