レイアウトを Susy 1 から Susy 2.0 に変換していますが、いくつかの動作が予想とは異なります。ここで何か間違ったことをしていますか?コンテナがページの幅全体に広がり、幅の半分の列がページの中央にあるようにしたいと思います。その列の内側に、3 つの等間隔の列 (赤、白、青) があります。スクリーンショットにあるように、css がどのようにコンパイルされているかわかりません。
header {
.fullheight {
@include backImage('../images/img_hero_brightspace-homepage.png');
@include container(100%);
.hgroup {
padding: 150px 0;
text-align: center;
h3{
@include span(8);
display: block;
font-weight: $light;
}
} //hgroup
section{
@include container;
@include span(6 at 3 of 12);
.serviceBox{
@include span(2 of 6);
width:100%;
height:40px;
background-color: white;
}//serviceBox
.volunteerBox{
@include span(2 of 6);
width:100%;
height:40px;
background-color: blue;
}//volunteerBox
.partnerBox{
@include span(2 of 6);
width:100%;
height:40px;
background-color: red;
}//partnerBox
}
} //fullheight
} //header
My Susy テンプレート
$susy: (
columns: 12,
container: 60em,
gutters: 1/4,
gutter-position: inside
);
私のHTML
<article class="fullheight">
<div class="hgroup">
<h3>Providing help to residents of Greater Cincinnati when challenges invade their lives</h3>
</div>
<section>
<div class="serviceBox">
</div>
<div class="volunteerBox">
</div>
<div class="partnerBox">
</div>
</section>
</article>