css - susy - how to make it full width (no gutter)? -
css - susy - how to make it full width (no gutter)? -
i got problem when using susy build grid. set wrapper class following:
$susy: ( math: fluid, columns: 12, gutters: 0.25, gutter-position: split, ); the problem kid element within wrapper. in case sometime want create total columns seek this
@include span(full); but not full, has gutter gap. , seek
@include span(full no-gutters); this create element no gutter still leave gutter width.
how can create total (no gutter) ? element.
thanks chalat
block level elements full-width default, don't need mixin that. if overriding previous susy mixin, can utilize width: 100%. or can alter element utilize inside no-gutters create susy output want.
@include span(full within no-gutters); that works because inside-gutter handling same split, element has span outer width or columns + gutters.
css layout susy
Comments
Post a Comment