我正在嘗試使用CSS移動前景圖像,使其與背景圖像重疊一點。我似乎無法讓前景圖像移動到任何地方,我只是無法弄清楚我做錯了什麼。任何人都可以將我指向正確的方向嗎?看我的fiddle。使用CSS移動前景圖像
HTML:
<img src="http://image.tmdb.org/t/p/w1000/aUYcExsGuRaw7PLGmAmXubt1dfG.jpg" style="-webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)))"
width="auto" height="400" class="backgroundImg">
<div class="frontImg">
<img src="http://image.tmdb.org/t/p/w150/2i0JH5WqYFqki7WDhUW56Sg0obh.jpg" class="" height="300" width="auto">
</div>
CSS:
body{
background: black;
}
.background{
position: absolute;
left: 0px;
top: 0px;
z-index: -1;
}
.frontImg{
position: absolute;
left:200;
top:500;
z-index: 1;
}