我可以在背景图像中左右添加负边距吗?

时间:2015-10-24 08:12:50

标签: css

我可以在这个背景css上以某种方式左右为5px应用负边距吗?

background: url("/wp-content/themes/custom-1/images/shadows.jpg") repeat-x center bottom;

1 个答案:

答案 0 :(得分:0)

您可以在元素上设置负边距:

.box {
background: url("/wp-content/themes/custom-1/images/shadows.jpg") repeat-x center bottom;
width: 100%;
height:200px;
background-size:cover;
position:relative;
margin: 0 -5px;
}

如果这对您没有帮助,请向我们提供该元素及其父母的html和css。