0

Susy 2 で単純なネストされたレイアウトを構築しようとしています: 2 つの列 (子) を持つコンテナーで、各子列にはコピーと 2 つのネストされた列 (孫) が含まれます。

孫の列には独自のガターがあるため、そのコンテンツが親のガターと一致していないことに気付きました。

理想的には、孫 (およびその背景色) は子要素の全幅に拡張されます。

これを達成するための最良のアプローチは何ですか?

要点: https://gist.github.com/andreimoment/2a734aa4a0e99b2866e9

HTML:

<div class="parent">
  <div class="child">
    <p>child 1</p>
    <div class="grandchild">Grandchild 1</div>
    <div class="grandchild last">Grandchild 2</div>
  </div>  
  <div class="child last">child 2</div>  
</div>

SCSS:

@import "compass";
@import "susy";

*, *:before, *:after {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

$susy: (
  columns: 12,
  column-width: 4em,
  gutters: 1/4,
  math: fluid,
  output: float,
  gutter-position:inside,
  global-box-sizing: border-box,
  debug: (
    image: show,
    color: rgba(200,100,100,.3),
    output: overlay,
    toggle: top right,
  ),
);

.parent {
  @include container();
  @include show-grid(background);
  padding:0;
  @include clearfix;
  }

.child {
  background-color: rgba(100,100,200, 0.5);
  @include span(first 6 of 12);
  &.last {
    @include span(last 6 of 12);
  }
}

.grandchild {
  background-color: rgba(100,100,200, 0.5);
  @include span(first 3 of 6);
  &.last {
    @include span(last 3 of 6);
  }
}
4

1 に答える 1

2

キーワードを使用しnestて、スパンに子があることを Susy に伝えます。insideこれは、使用しているとsplitガターでのみ必要です。

@include span(first 6 of 12 nest);

no-guttersSusy にガターを出力させたくない場合はいつでも使用できますnestが、この場合はより意味的に明確です。

first注: withinsideまたはsplitguttersを使用する必要もありません。どちらも必要あり ませんがlast、サブピクセルの丸めの問題を解決するのに役立ちます。それらは何も傷つけませんが、ダメージを与えずに落とすことができます。

于 2014-08-03T21:52:42.073 に答える