我喜欢这个想法flex-grid
并且想知道我是否正确使用它。我使用 Foundation 6 / SASS 开始构建并做了@include foundation-flex-grid;
在构建基本页面时,我在 DevTools 中注意到 Kitchen sink 中的某些项目正在使用它们的显示设置的项目的block
样式float
。
例子:.title-bar
<div class="title-bar">
<div class="title-bar-left">
<button class="menu-icon" type="button"></button>
<span class="title-bar-title">Foundation</span>
</div>
<div class="title-bar-right">
<button class="menu-icon" type="button"></button>
</div>
</div>
元素.title-bar-left
并.title-bar-right
在其上具有相应的浮点数。我知道浮动网格在 flex-grid 中是不必要的。
我的问题:
我应该继续使用
flex-grid
还是应该做一些额外的事情来提前删除/替换这些样式?在我看来,Foundation Site 上的 Kitchen Sink是为普通网格量身定制的,只需稍加修改就可以安全地使用这些元素
flex-grid
,还是需要大量重写 SASS/CSS?