白色部分是在网站上水平居中的容器 div。条纹是 body 元素的背景图像。我把哑铃的其余部分作为图片,我想把它放在容器外面,这样就有了完整的图片。
通常它将图像绝对定位在容器 div 中并将其向右移动一点。
但我的问题是整个图像的背景是白色的。所以结果是:
有没有办法解决这个问题?
<body>
<div id="container">
<div id="pimg"><img src="../images/image_part.png"></div>
</div>
</body>
html {
background-image: url('../images/stripes.png');
}
#container {
position: relative;
background-color: white;
background-image: url('../images/image.png'); // first picture
background-repeat: no-repeat;
background-position: top right;
width: 800px;
height: 90%;
margin: 0 auto;
}
#pimg {
position: absolute;
top: 0;
right: -100px; // second image
}