我目前用下面的代碼工作:CSS多重背景定位
body {
background: url("image1") repeat fixed center top #000000;
border: 0 none;
color: #DBDBDB;
font-family: Verdana;
font-size: 9px;
font-weight: normal;
text-decoration: none;
}
inlineContent {
background: url("image2") no-repeat scroll center top transparent !important;
display: inline-block !important;
height: 425px !important;
left: -282px !important;
margin: auto !important;
position: absolute;
right: 0 !important;
top: -425px !important;
width: 900px !important;
z-index: -1 !important;
}
如果我有一個大致的背景(體內後第一行),我有另一個圖像ontop的背景(行inlineContent
後) 。我如何能夠在原始背景的頂部添加另一幅圖像,其位置與前兩幅圖像不同?
預先感謝您!
嗯,但使用該方法,指定的位置適用於兩個圖像。我怎樣才能讓這兩個圖像分別擁有不同的位置? – user1846225