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

instead of

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