Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
susy コンテナーを中央に配置する代わりに、左にフロートさせることは可能ですか?
はいの場合、どうすればよいですか?通常の float:left はグリッドを台無しにします。
ありがとう。
はい。浮く必要はありません。margin: auto左右両方にセットするだけでセンタリングができます。これらの余白のいずれかを変更すると、コンテナーが移動します。あなたの場合:非 auto を追加するだけmargin-leftです。使用する値は、左端からのオフセットになります。
margin: auto
margin-left
// flush @include container; margin-left: 0; // offset @include container; margin-left: 1em;