Upgrade to Pro — share decks privately, control downloads, hide ads and more …

How CSS Grid Changes Everything

Jen Simmons
November 06, 2017

How CSS Grid Changes Everything

Presented at the W3C Developer meetup, San Francisco.

Jen Simmons

November 06, 2017
Tweet

More Decks by Jen Simmons

Other Decks in Technology

Transcript

  1. The Official Timeline of Web Page Layout The No-Layout Layout

    Table-based Layouts Hand-coded Float Layouts Framework Layouts Amazing Future!
  2. CSS Grid Flexbox Alignment Writing Modes Multicolumn Viewport Units Transforms

    Object Fit Clip-path Masking Shape-outside Initial-letter Flow Floats Block Inline Inline-block Display:table Margin Negative margins Padding everything else in CSS
  3. You define !e size and/or number of rows and/or columns

    Let !e browser define number or size of rows or columns
  4. Place each "em 
 into a specific 
 cell or

    area Let !e browser place each "em using auto-placement algor"hm
  5. portion of available 
 space — 2 parts set by

    
 content size fixed portion of available 
 space — 1 part
  6. <body> <header>…</header> <main> <article> <h1> <p> <p> <p> <figure> <p>

    </article> </main> <aside>…</aside> <footer>…</footer> </body> body { display: grid; }
  7. <body> <header>…</header> <main> <article> <h1> <p> <p> <p> <figure> <p>

    </article> </main> <aside>…</aside> <footer>…</footer> </body> body { display: grid; } article { display: grid; }
  8. <body> <header>…</header> <main> <article> <h1> <p> <p> <p> <figure> <p>

    </article> </main> <aside>…</aside> <footer>…</footer> </body> body { display: grid; } main { display: subgrid; } article { display: subgrid; }
  9. <body> <header>…</header> <main> <article> <h1> <p> <p> <p> <figure> <p>

    </article> </main> <aside>…</aside> <footer>…</footer> </body> body { display: grid; } article { display: grid; }
  10. Headline Here This is teaser text. It comes in different

    lengths. Headline Here This is teaser text. It comes in different lengths. Here we see more content filling the box up all the way. Headline This is teaser text. Headline That is Longer & Wraps This is teaser text. It comes in different lengths. Headline This Headline This is teaser text. It comes in different lengths.
  11. Headline Here This is teaser text. It comes in different

    lengths. Headline Here This is teaser text. It comes in different lengths. Here we see more content filling the box up all the way. Headline This is teaser text. Headline That is Longer & Wraps This is teaser text. It comes in different lengths. Headline This Headline This is teaser text. It comes in different lengths.
  12. Headline Here This is teaser text. It comes in different

    lengths. Headline Here This is teaser text. It comes in different lengths. Here we see more content filling the box up all the way. Headline This is teaser text. Headline That is Longer & Wraps This is teaser text. It comes in different lengths. Headline This Headline This is teaser text. It comes in different lengths.
  13. Headline Here This is teaser text. It comes in different

    lengths. Headline Here This is teaser text. It comes in different lengths. Here we see more content filling the box up all the way. Headline This is teaser text. Headline That is Longer & Wraps This is teaser text. It comes in different lengths. Headline This Headline This is teaser text. It comes in different lengths.
  14. Headline Here This is teaser text. It comes in different

    lengths. Headline Here This is teaser text. It comes in different lengths. Here we see more content filling the box up all the way. Headline This is teaser text. Headline That is Longer & Wraps This is teaser text. It comes in different lengths. Headline This Headline This is teaser text. It comes in different lengths.
  15. Grid Line Grid Track Grid Track Grid Line Grid Line

    Grid Line Grid Line Grid Area Grid Cell
  16. Grid Line Grid Track Grid Line Grid Line Grid Line

    Grid Line Grid Gap Grid Gap Grid Gap Grid Track
  17. <ul> <li><img src="/file1.jpg" ></li> <li><img src="/file2.jpg" ></li> <li><img src="/file3.jpg" ></li>

    <li><img src="/file4.jpg" ></li> <li><img src="/file5.jpg" ></li> <li><img src="/file6.jpg" ></li> <li><img src="/file7.jpg" ></li> </ul>
  18. ul { display: grid; grid-template-columns: repeat(4, 100px); grid-gap: 4px; }

    /* or */ ul { display: grid; grid-template-columns: 100px 100px 100px 100px; grid-gap: 4px; }
  19. ul { display: grid; grid-template-columns: repeat(5, 1fr); grid-gap: 0.25em; }

    /* or */ ul { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr 1fr; grid-gap: 0.25em; }
  20. li:nth-child(1) { grid-column: 2 / 3; grid-row: 1 / 2;

    } li:nth-child(2) { grid-column: 4 / 5; grid-row: 2 / 3; } li:nth-child(3) { grid-column: 3 / 4; grid-row: 3 / 4; } li:nth-child(4) {…} li:nth-child(5) {…}
  21. .grid-container { display: grid; grid-template-columns: 1fr 1fr 1fr; } some

    other syntax options (each with different results) grid-template-columns: 1fr 5fr 2.5fr; grid-template-columns: 8em 1fr 300px; grid-template-columns: 1fr 1fr 2fr 3fr 5fr 8fr 13fr 21fr 34fr; grid-template-columns: repeat(7, 1fr); grid-template-columns: repeat(3, 200px 1fr 25%); grid-template-columns: repeat(auto-fill, 10rem); grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); grid-template-columns: 4rem 2fr repeat(5, 1fr) 300px;
  22. .box { width: calc(100-(2*2em)/3)%;} 100% x% x% x% 2em 2em

    @media (min-width: 600px) { .box { width: calc(100-(2*2em)/3)%;}} @media (min-width: 800px) { .box { width: calc(100-(3*2em)/4)%;}} @media (min-width: 400px) { .box { width: calc(100-(1*2em)/2)%;}}
  23. 1fr 1fr 1fr 2em 2em 1fr + 1fr + 1fr

    = 3fr total therefore, 1fr = 1/3 of the space
  24. 1fr 1fr 1fr 2em 2em 1fr + 1fr + 1fr

    + 1fr = 4fr total therefore, now 1fr = 1/4 of the space 1fr 2em
  25. 6

  26. // code for non-Grid browsers @supports (display: grid) { //

    undo some of the above // then do your Grid layout }
  27. 6

  28. You have two choices for 
 Internet Explorer (& old

    Edge): 1) Leverage the 2012 Grid implementation. 2) Pretend IE has no Grid.
  29. You have two choices for 
 Internet Explorer (& old

    Edge): 1) Use old -ms-* syntax. 2) Or don’t.
  30. Modern Layouts: 
 Getting Out of Our Ruts Revolutionize Your

    Page: 
 Real Art Direction on the Web 2015 2016 available on jensimmons.com