我有这段代码:
#homepic {
width: 1024px;
height: 430px;
background-image: url(images/homebig.png);
margin: 0 auto;
position:relative;
}
#whatsnew {
positon: absolute;
top: 500px;
left: 200px;
width: 431px;
height: 186px;
border: none;
background-image: url(images/whatsnew.png);
}
我正试图将whatsnew定位在我的homepic的父元素上,但它被卡在角落里,我无法用顶部/左边移动它。我需要做些什么才能在另一个div中移动我的whatsnew图片?
答案 0 :(得分:0)