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在左右两侧设置即可进行居中。更改其中任何一个边距,容器就会移动。在您的情况下:只需添加任何 non-auto margin-left。您使用的值将是从左边缘的偏移量。
margin: auto
margin-left
// flush @include container; margin-left: 0; // offset @include container; margin-left: 1em;