41
CSS4 GRID: TRUE LAYOUT FINALLY ARRIVES JEN KRAMER HARVARD UNIVERSITY EXTENSION SCHOOL

CSS Grid: True Layout Finally Arrives

Embed Size (px)

Citation preview

Page 1: CSS Grid: True Layout Finally Arrives

C S S 4 G R I D : T R U E L A Y O U T F I N A L L Y A R R I V E S

J E N K R A M E R H A R V A R D U N I V E R S I T Y E X T E N S I O N S C H O O L

Page 2: CSS Grid: True Layout Finally Arrives
Page 3: CSS Grid: True Layout Finally Arrives

https://www.w3.org/TR/css-2015/#css-levels

“There is no CSS Level 4… CSS the language no longer has levels.”

Page 4: CSS Grid: True Layout Finally Arrives

http://news.softpedia.com/news/w3c-set-to-publish-html-5-1-already-started-work-on-html-5-2-508512.shtml

Page 5: CSS Grid: True Layout Finally Arrives
Page 6: CSS Grid: True Layout Finally Arrives

C S S 4 G R I D : T R U E L A Y O U T F I N A L L Y A R R I V E S

J E N K R A M E R H A R V A R D U N I V E R S I T Y E X T E N S I O N S C H O O L

X

Page 7: CSS Grid: True Layout Finally Arrives
Page 8: CSS Grid: True Layout Finally Arrives
Page 9: CSS Grid: True Layout Finally Arrives

Time spent trying to get the layout to work using

Flexbox, before giving up and using floats

Page 10: CSS Grid: True Layout Finally Arrives

R E S P O N S I V E D E S I G NP A R T 1

Page 11: CSS Grid: True Layout Finally Arrives

•  Defined by three characteristics

•  Flexible grid-based layout

•  Media queries (CSS3)

•  Images that resize

•  www.alistapart.com/articles/responsive-web-design/

R E S P O N S I V E D E S I G N

Page 12: CSS Grid: True Layout Finally Arrives

•  A hack from the start, right after table-based layout!

•  Features rows and cells.

•  Rows clear the floats on the cells.

•  Source ordering determines display, though some (minor) rearrangement is possible.

•  Major disadvantage: equal column heights

F L O A T S

Page 13: CSS Grid: True Layout Finally Arrives

. R O W

C E L L / . C O L - 1

C E L L / . C O L - 1

C E L L / . C O L - 1

C E L L / . C O L - 1

<div class=“row”> <div class=“col-1”></div> <div class=“col-1”></div> <div class=“col-1”></div> <div class=“col-1”></div></div>

Page 14: CSS Grid: True Layout Finally Arrives

. R O W

C E L L / . C O L - 1

C E L L / . C O L - 1

C E L L / . C O L - 1

C E L L / . C O L - 1

.row::after { content: ""; display: table; clear: both;}

.col-1 { float: left;

margin-left: 4%; width: 20%;}

Page 15: CSS Grid: True Layout Finally Arrives

. R O W

C E L L / . C O L - 1

C E L L / . C O L - 1

C E L L / . C O L - 1

C E L L / . C O L - 1

@media only screen and (min-width: 480px) and (max-width: 767px) { .col-1 { width: 44%; }}

Page 16: CSS Grid: True Layout Finally Arrives

R O W

C E L L / . C O L - 1

C E L L / . C O L - 1

C E L L / . C O L - 1

C E L L / . C O L - 1

@media only screen and (max-width: 479px) {

.col-1 { width: 98%; margin: 1%; float: none; }}

Page 17: CSS Grid: True Layout Finally Arrives

. R O W

C E L L / . C O L - 1

1

C E L L / . C O L - 1

2

C E L L / . C O L - 1

3 C E L L /

. C O L - 1 4

There can be layout problems with floats.

This can be resolved with JavaScript, with a column equalizer script.

Page 18: CSS Grid: True Layout Finally Arrives

/* rearranging the columns */[class*="col-"] {

position: relative;}.col-push-1 {

left: 26%;}.col-pull-3 {

left: -74%;}

Page 19: CSS Grid: True Layout Finally Arrives

F L E X B O XN E X T U P

Page 20: CSS Grid: True Layout Finally Arrives

•  The first layout elements – but not designed to lay out whole web pages

•  Features flex-containers (row) and flex-items (cells). Both are required to work.

•  Excels at vertical centering and equal heights

•  Very easy to reorder boxes

•  Major disadvantages:

•  Wasn’t designed to be locked down for layouts! Works in 1 dimension only.

•  Browser support and syntax is challenging.

F L E X B O X

Page 21: CSS Grid: True Layout Finally Arrives

T H R E E V E R S I O N S O F F L E X B O X

•  2009: display: box;

•  2011: display: flexbox; (“tweener” syntax)

•  2016: display: flex;

•  Prefixing may still be required depending on browser support desired

Page 22: CSS Grid: True Layout Finally Arrives

C U R R E N T S U P P O R T•  Internet Explorer

•  <= IE 9: not supported

•  IE 10 supports “tweener” syntax (ms prefix)

•  IE 11, Edge: Full support (though buggy in IE 11)

•  Safari 7.1/8, iOS Safari 7/8 require webkit prefix

•  Others support current syntax (including Opera!)

•  http://caniuse.com/#feat=flexbox

Page 23: CSS Grid: True Layout Finally Arrives

<div class=“row”> <div class=“col-1”></div> <div class=“col-1”></div> <div class=“col-1”></div> <div class=“col-1”></div></div>

. R O W / C O N T A I N E R

I T E M / . C O L - 1

I T E M / . C O L - 1

I T E M / . C O L - 1

I T E M / . C O L - 1

Page 24: CSS Grid: True Layout Finally Arrives

.row {display: flex;flex: 0 1 auto;flex-flow: row wrap;justify-content: center;margin: 1%;

}

Change flex-flow to other values to change direction of rows – row reverse, column reverse, no wrap

Page 25: CSS Grid: True Layout Finally Arrives

.col-1 { flex: 0 0 24%; /* desktop */} flex: 0 0 48%; /* tablet */} flex: 0 0 98%; /* phone */}

To change widths on .col-1, change the flex-basis property. This is more flexible than width.

Page 26: CSS Grid: True Layout Finally Arrives

/* rearranging the columns */

.col-push-1 {order: 2;

}.col-pull-3 {order: 1;

}

Page 27: CSS Grid: True Layout Finally Arrives

C S S G R I DF I N A L L Y !

Page 28: CSS Grid: True Layout Finally Arrives

•  Built into CSS specification (in development).

•  No “row” markup required.

•  Grid is designed to work in 2 dimensions.

•  Use Flexbox for UI elements, but use Grid for major layout.

W H Y C S S G R I D ?

Page 29: CSS Grid: True Layout Finally Arrives

https://drafts.csswg.org/css-grid/

Page 30: CSS Grid: True Layout Finally Arrives

•  Almost no browser support without flags: http://igalia.github.io/css-grid-layout/enable.html

•  Spec isn’t fully implemented in some browsers, and/or there are bugs

I S S U E S , W E ’ V E H A D A F E W

Page 31: CSS Grid: True Layout Finally Arrives

. W R A P P E R

C E L L / . C O L - 1

C E L L / . C O L - 2

C E L L / . C O L - 3

C E L L / . C O L - 4

<div class=“wrapper”> <div class=“col-1”></div> <div class=“col-2”></div> <div class=“col-3”></div> <div class=“col-4”></div></div>

Page 32: CSS Grid: True Layout Finally Arrives

. W R A P P E R

.wrapper {display: grid;grid-gap: 10px;

}

C E L L / . C O L - 1

C E L L / . C O L - 2

C E L L / . C O L - 3

C E L L / . C O L - 4

Page 33: CSS Grid: True Layout Finally Arrives

. W R A P P E R

.col-1 {grid-column: 1 / 2;

}.col-2 {

grid-column: 2 / 3;}.col-3 {

grid-column: 3 / 4;}

C E L L / . C O L - 1

C E L L / . C O L - 2

C E L L / . C O L - 3

C E L L / . C O L - 4 1 2 3 4 5

Page 34: CSS Grid: True Layout Finally Arrives

.col-1 {grid-column: 1 / 2;

grid-row: 1 / 3;}.col-2 {

grid-column: 2 / 3; grid-row: 1 / 2;}.col-3 {

grid-column: 2 / 3; grid-row: 2 / 3;}

. W R A P P E R

C E L L / . C O L - 1

C E L L / . C O L - 2

C E L L / . C O L - 3

Page 35: CSS Grid: True Layout Finally Arrives

•  Named grid template areas (header, footer, etc): http://gridbyexample.com/examples/#example11

A L T E R N A T E S Y N T A X

Page 36: CSS Grid: True Layout Finally Arrives

. W R A P P E R

A S I D E

H E A D E R

A R T I C L E

R E O R D E R I N G

<div class=“wrapper”> <header></header> <article></article> <aside></aside></div>

Page 37: CSS Grid: True Layout Finally Arrives

. W R A P P E R

A S I D E

H E A D E R

A R T I C L E

R E O R D E R I N G

Show code in GitHub!

reordering.html

reordering.css

https://github.com/jen4web/cssgrid

Page 38: CSS Grid: True Layout Finally Arrives

C O D E E X A M P L Ewww.github.com/jen4web/cssgrid

Page 39: CSS Grid: True Layout Finally Arrives

•  CSS Tricks: https://css-tricks.com/snippets/css/complete-guide-grid/

•  Grid by Example: http://gridbyexample.com/

•  W3C Spec: https://www.w3.org/TR/css-grid-1/

•  W3C Editor’s Draft, updated Sept 8: https://drafts.csswg.org/css-grid/

R E C O M M E N D E D R E S O U R C E S

Page 40: CSS Grid: True Layout Finally Arrives

•  Need browser support? Can’t go wrong with floats.

•  If you are OK with a few prefixes and learning something new, Flexbox may be a reasonable interim step.

•  PS – it’s in Bootstrap 4. Get used to it.

•  Keep waiting for CSS Grid! Coming to a browser near you Real Soon!

C U R R E N T R E C O M M E N D A T I O N S

Page 41: CSS Grid: True Layout Finally Arrives

Q U E S T I O N S ?

Jen Kramer

Arlington, MA, USA

Phone: 802-257-2657

[email protected]

www.jenkramer.org

Twitter: @jen4web

Facebook: facebook.com/webdesignjen