0

我的网站有一个幻灯片,所有图像之间都有空白;但是,我想删除第一张图像左侧的空白区域和最后一张图像右侧的空白区域,因此它会从页面中流出。但是它并没有删除我想要的东西。

我正在使用什么:

.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;}}
4

1 回答 1

1
.collection-type-gallery #slideshowWrapper .slide:first-child img

代替

.collection-type-gallery #slideshowWrapper .slide img .slide:first-child
于 2013-08-20T15:10:48.213 回答