My site有幻灯片,所有图片之间都有空白区域;但是,我想删除左侧上的第一张图片上的空白区域,以及右侧上的空白区域>最后一张图片,所以它会脱离页面。然而它并没有删除我想要的东西。
我正在使用的是什么:
.collection-type-gallery #slideshowWrapper .slide img {
background-color: white !important;
margin: 0px 6px;
.slide:first-child {
margin-left: 0px;}
.slide:last-child {
margin-right: 0px;}}
答案 0 :(得分:1)
.collection-type-gallery #slideshowWrapper .slide:first-child img
而不是
.collection-type-gallery #slideshowWrapper .slide img .slide:first-child