這裏是我的CSS
dot {
background:url("images/non_selected.png") repeat scroll 22px 22px transparent;
height:22px;
width:22px;
}
當我將其更改爲
url("images/non_selected.png") norepeat scroll 22px 22px transparent
沒有顯示...什麼給
這裏是我的CSS
dot {
background:url("images/non_selected.png") repeat scroll 22px 22px transparent;
height:22px;
width:22px;
}
當我將其更改爲
url("images/non_selected.png") norepeat scroll 22px 22px transparent
沒有顯示...什麼給
它no-repeat
不norepeat
。讓我知道如果這不能解決它。
編輯#1:你是太多抵消它...嘗試
background: url(http://dev.posnation.com/build_system/css/images/non_selected.png) no-repeat 0px 0px;
這是因爲你已經通過22個像素偏移的背景圖像。該圖像在dot
範圍之外開始,因此除非您重複該圖像,否則它不會顯示。相反,請嘗試:
background: url("images/non_selected.png") no-repeat scroll left top;
重要的部分是將「22px 22px」更改爲「left top」。
我試過了,它並不奇怪 – Trace 2010-11-15 22:12:31
它還沒有顯示看看 – Trace 2010-11-15 21:49:23
你的意思是'.dot'? – 2010-11-15 21:51:41
更改'22px 22px'爲'0 0' – 2010-11-15 21:53:38