2015-02-23 49 views
0

我在Drupal框架中使用Compass Columns爲我的內容創建一個網格,每行有5列。但是,前五列/列出項目之外的任何內容都不會顯示,因此即使列出了16個以上的項目,我也只顯示一列。指南針列不在第一行之後顯示

我的代碼:

.product-item-list { 
     ul { 
      padding: 0; 
      @include column-count(5); 
     } 
     li { 
      list-style-type: none; 
      margin-bottom: 2em; 
      @include column-break(before, always); 
     } 
    } 

有其他人遇到這個問題?幫助將不勝感激,謝謝。

回答

0

刪除@include column-break(before,always);並添加顯示內聯到li

裏面的第一個div