我有這些風格:與Susy網格背景
+with-layout(8 1/4)
.fact-circle-container
+container(show)
+clearfix
font-size: 4px
padding: 0 30px
li
+gallery(2)
我的網格項目正常排隊。在這種情況下,每個<li>
橫跨兩個8列,但是當我打開網格背景顯示如上圖所示,我得到下面的輸出:
任何想法,爲什麼它這樣做呢?當然,我應該看到8列?
感謝, 尼爾
更新1:
所以,background-size
語句時,被淘汰是不正確的輸出這樣background-size: 8.47458%, 100% 1.5;
這似乎是將我的基線高度設置由於某種原因而結束。我ahve通過改變我$base-line-height
可變像7.5一些奇怪確認這與此改變的輸出: background-size: 8.47458%, 100% 7.5;
更我的代碼包括初始基線高度設置的位爲下面:
// Line heights
// ============
$base-line-height: 7.5;
$header-line-height: 1.25;
// Font weights
// ============
$base-font-weight: 400;
$header-font-weight: 700;
// Font colours
// ============
$base-font-color: $color-nt-grey;
$base-link-color: $color-nt-bright-blue;
$base-link-hover-color: saturate($base-link-color, 20%);
$base-link-visited-color: saturate($base-link-color, 20%);
// Other sizes
// ===========
$base-border-radius: 3px;
$base-spacing: $base-line-height * 1em;
$base-z-index: 0;
$fixed-font-family: "Andale Mono", AndaleMono, monospace;
$fixed-font-size: 15px;
$fixed-line-height: 1.2;
$base-background-color: $color-white;
$separator-width: 1px;
$separator-style: dashed;
$separator-color: $color-nt-dark-blue;
$rhythm-unit: 'rem';
$p-margin: 0.7 * $base-font-size;
$list-indent: 20px;
// Susy grid settings
// ==================
$susy: (
flow: ltr,
math: fluid,
output: float,
gutter-position: after,
container: 1440px,
container-position: center,
columns: 12,
gutters: .25,
column-width: false,
global-box-sizing: border-box,
last-flow: to,
debug: (
image: hide,
color: rgba(#66f, .25),
output: background,
toggle: top right,
),
use-custom: (
background-image: true,
background-options: false,
box-sizing: true,
clearfix: false,
rem: true,
)
);
任何想法爲什麼行高被添加在這裏沒有明顯的原因?
這絕對聽起來像是它發生了什麼,但奇怪的是,在DevTools中,我可以看到這個語句'background-size:8.47458%,100%1.5;'但它有一個警告符號和'background-size: 100%;而是接管。 – rctneil
您可以在我的OP中檢查我的更新。我無法理解爲什麼行高被輸出到那裏?這很奇怪。 – rctneil
我看到了相同的行爲,所以我很高興至少找到了show-columns解決方法。你可以發佈一個鏈接到Github問題,如果它被創建? – marcvangend