如何从第一个和第一个删除左右空格最后的图片?

时间:2013-08-20 15:03:42

标签: html css

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

1 个答案:

答案 0 :(得分:1)

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

而不是

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