我可以在这个背景css上以某种方式左右为5px应用负边距吗?
background: url("/wp-content/themes/custom-1/images/shadows.jpg") repeat-x center bottom;
答案 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。