Introducing ungridā€”another minimal grid approach

Ungrid

The ungrid is a very minimal grid system that makes use of the of the table cell display.

Because table cell is evenly distributed by default, so we just need to define columns and browser would handle the space spreading.

For any column that needs specific width, we can just set the width on that specific columns, using either fixed width or percentages.

@media (min-width: 30em) {
  .row { width: 100%; display: table; table-layout: fixed; }
  .col { display: table-cell; }
}

Next Page ā†’ Media queries in Zurb Foundation

ā† Previous Page Building our own grid system


Last updated at 2017-04-19. Show version history

Comments

no comments yet.