<section class="container">
<div class="content>
<article>MainContent</article>
<aside>SideBar</aside>
</div>
</section>
.content {
@include container;
@include at-breakpoint(0 768px 10) {
@include container(10, 10);
}
article {
@include span-columns(9, $total-columns);
}
aside.sidebar {
@include span-columns(3 omega, $total-columns);
}
これは私のhtml構造とsusy-compassです。Susy グリッドを使用してレスポンシブ Web テンプレートを構築しようとしています。デスクトップ用に 960px の 12 列、タブレット用に 768px の 10 列、モバイル用に 320px の 4 列が必要ですが、わかりません。@include at-breakpoint を 10 列で 768px にしようとしましたが、デフォルトの 12 列はまだ 10 列に変更されていません。
何か案は?このようなテンプレートを作成するための良い提案はありますか?