我在div上有一个背景图片,div的大小设置为图像的大小,但是,我无法删除左边显示的边距。见下面的CSS;
.faders-image {
background-image: url(../images/background.jpg);
background-repeat: no-repeat;
position: fixed;
width: 512px;
height: 512px;
right: 0rem;
bottom: 0rem;
margin: 0;
border: none;
padding 0;
-webkit-opacity: 0.50;
z-index: 8;
}
答案 0 :(得分:0)
如果页面左边距有问题,可以使用以下样式。
.faders-image {
background-image: url(heart-icon.png);
background-repeat: no-repeat;
position: fixed;
width: 512px;
height: 512px;
left: 0;
bottom: 0rem;
margin: 0;
border: none; padding 0;
-webkit-opacity: 0.50;
z-index: 8;
}
我已将样式right: 0rem
更改为left: 0;