2013-08-20 17 views
0

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
.collection-type-gallery #slideshowWrapper .slide:first-child img 

代替

.collection-type-gallery #slideshowWrapper .slide img .slide:first-child 
相關問題