2014-12-03 46 views
0

我正在用susy建立网站以允许我需要的网格具有灵活性,此刻我尚未设置任何设置,所以我只使用默认设置。更改仅用于使用susy的部分的排水沟

我希望能够改变网站的一部分的排水沟(使它们变小)。 我建立了它在这里:

http://sassmeister.com/gist/89243b68852fdd9cf282

SCSS

.feature-box-container 
    { 
    @include container(80em); 
    .feature-box 
    { 
     @include gallery(4 of 12); 
     img 
     { 
      margin-bottom:20px; 
      width: 100%; 
     } 
    } 
} 

HTML

<div class="feature-box-container container"> 
    <div class="feature-box"> 
     <!-- 450 --> 
     <div> 
      <img src="http://placehold.it/355x170" alt=""> 
     </div> 
     <div> 
      <img src="http://placehold.it/355x280" alt=""> 
     </div> 
    </div> 
    <div class="feature-box"> 
     <div> 
      <img src="http://placehold.it/355x317" alt=""> 
     </div> 
     <div> 
      <img src="http://placehold.it/355x133" alt=""> 
     </div> 
    </div> 
    <div class="feature-box"> 
     <div> 
      <img src="http://placehold.it/355x270" alt=""> 
     </div> 
     <div> 
      <img src="http://placehold.it/355x180" alt=""> 
     </div> 
    </div> 
</div> 

在它的网站默认的图片,但我只需要这部分有在现在至少有一半的排水沟宽度。

enter image description here

回答