jacqueline quintanilla
play

Jacqueline Quintanilla Twin Cities Code Camp April 13, 2019 - PowerPoint PPT Presentation

Jacqueline Quintanilla Twin Cities Code Camp April 13, 2019 qjac.net Dont know what CSS Grid is? Curious about CSS Grid? Need to boost your grid skills? Not sure if grid is the right solution? Jacqueline Quintanilla


  1. Jacqueline Quintanilla Twin Cities Code Camp April 13, 2019 qjac.net

  2. Don’t know what CSS Grid is? ➔ Curious about CSS Grid? ➔ Need to boost your grid skills? ➔ Not sure if grid is the right solution? ➔ Jacqueline Quintanilla You’re in the right room! qjac.net Some CSS knowledge is helpful, but not necessary. qjac.net

  3. qjac.net @_qjac @qjac Slides: tinyurl.com/discover-grid qjac.net

  4. ➔ Frontend Developer ➔ Cat Lady ➔ Podcast Enthusiast ➔ Homebrewer ➔ Design Fanatic qjac.net

  5. jqdesign.co qjac.net

  6. qjac.net

  7. ➔ Simple semantic markup!! ➔ Maintainability!!! ➔ 2-D and inherently flexible!!!! ➔ Center all the things!!!!! qjac.net

  8. ➔ New Design Possibilities qjac.net

  9. codepen.io/tutsplus/full/JLregK/ qjac.net

  10. labs.jensimmons.com qjac.net

  11. twitter.com/MinaMarkham/status/1017191293099728896 qjac.net

  12. ➔ It’s ready!!!! qjac.net

  13. Source: https://caniuse.com/#feat=css-grid jqdesign.co qjac.net

  14. qjac.net

  15. CSS Grid: An overly brief primer qjac.net

  16. The Vocabulary Grid Container qjac.net

  17. The Vocabulary Grid Item = child Grid Container = parent Grid Item = child Grid Item Grid Item = child = child qjac.net

  18. The Vocabulary Grid Track Grid Track qjac.net

  19. The Vocabulary Grid Cell Grid Cell qjac.net

  20. The Vocabulary Gap qjac.net

  21. The Vocabulary Grid Grid Area Area qjac.net

  22. The Vocabulary Grid Area Grid Area qjac.net

  23. We have some HTML. Now what? <div class="wrapper"> <div class="child one">1</div> <div class="child two">2</div> <div class="child three">3</div> <div class="child four">4</div> <div class="child five">5</div> <div class="child six">6</div> </div> qjac.net

  24. Make The Grid .wrapper { display: grid; } qjac.net

  25. qjac.net

  26. Define The Grid Grid Container .wrapper { display: grid; grid-template-columns: ????; grid-template-rows: ????; row-gap/column-gap/gap: ????; } qjac.net

  27. grid-template-columns: 300px 200px 100px; codepen.io/qjac/pen/rZOemM qjac.net

  28. qjac.net

  29. grid-template-columns: 3fr 2fr 1fr; codepen.io/qjac/pen/XPmroe qjac.net

  30. grid-template-columns: 300px 2fr 1fr; codepen.io/qjac/pen/EeVKXm qjac.net

  31. grid-template-columns: 200px minmax(100px, 1fr) minmax(200px, 400px); codepen.io/qjac/pen/wEKogO jqdesign.co qjac.net

  32. qjac.net

  33. Auto Placement .wrapper { display: grid; grid-template-columns: 300px 2fr 1fr; grid-template-rows: 150px 150px; gap: 20px; } qjac.net

  34. qjac.net codepen.io/qjac/pen/jRqPZP

  35. qjac.net

  36. qjac.net codepen.io/qjac/full/pBgWBe

  37. qjac.net codepen.io/qjac/pen/jRqPZP

  38. Line-based Placement .one { grid-column: 1 / 3; grid-row: 2 / 3; } qjac.net

  39. Named Lines .wrapper { display: grid; grid-template-columns: [start] 300px [main-start] 2fr [bob] 1fr [end]; grid-template-rows: [nav] 150px [row2] 150px; } .one { grid-column: main-start/end; grid-row: row2; } .two { grid-column-start: bob; } qjac.net

  40. qjac.net

  41. Area Placement .wrapper { grid-template-columns: 200px 2fr 1fr; grid-template-areas: "nav nav nav" "aside main main" "aside info1 info2" "footer footer footer"; } qjac.net

  42. codepen.io/qjac/pen/YOyqmB qjac.net

  43. Area Placement .wrapper { grid-template-columns: 200px 2fr 1fr; grid-template-areas: "nav nav nav" "aside main main" "aside info1 info2" "footer footer footer"; } qjac.net

  44. Area Placement .one { .four { .wrapper { grid-area: nav; grid-area: info1; grid-template-columns: 200px 2fr 1fr; } } grid-template-areas: .two { .five { "nav nav nav" grid-area: main; grid-area: info2; "aside main main" } } "aside info1 info2" .three { .six { "footer footer footer"; grid-area: aside; grid-area: footer; } } } qjac.net

  45. codepen.io/collection/DPpxGx/#0 jqdesign.co qjac.net

  46. qjac.net

  47. Area Placement .wrapper { .wrapper { grid-template-columns: 200px 2fr 1fr; grid-template-columns: 200px 2fr 1fr; grid-template-areas: grid-template-areas: "nav nav nav" "nav nav nav" " aside main main" "main main aside " " aside info1 info2" "info1 info2 aside " "footer footer footer"; "footer footer footer"; } } qjac.net

  48. qjac.net

  49. qjac.net

  50. Alignment Justify-items? Align-items? Justify-content? Align-content? Justify = along the inline (row) axis ● Align = along the block (column) axis ● Items = all grid items in container ● Content = the entire grid in the container ● qjac.net

  51. justify-items: start; justify-items: end; justify-items: center; justify-items: stretch; https://codepen.io/qjac/pen/XQXeoV qjac.net

  52. align-items: start; align-items: end; align-items: center; align-items: stretch; https://codepen.io/qjac/pen/pBgWBe qjac.net

  53. justify-content: start; justify-content: end; Justify-content: center; justify-content: stretch; https://codepen.io/qjac/pen/axNBjL qjac.net

  54. justify-content: space-around; justify-content: space-between; justify-content: space-evenly; https://codepen.io/qjac/pen/axNBjL qjac.net

  55. align-content: start; align-content: end; align-content center; align-content: stretch; https://codepen.io/qjac/pen/qwZmBr qjac.net

  56. align-content: space-around; align-content: space-between; align-content: space-evenly; https://codepen.io/qjac/pen/qwZmBr qjac.net

  57. qjac.net

  58. Jen Simmons’ Layout Lab ➔ Grid by Example ➔ Learn CSS Grid with Wes Bos ➔ Learn CSS Grid for Free ➔ Practice makes perfect. Grid Garden ➔ Slides: tinyurl.com/discover-grid qjac.net

  59. The New Layout Standard For The Web ➔ by Rachel Andrew CSS Grid Gotchas And Stumbling Blocks ➔ by Rachel Andrew Best Practices With CSS Grid Layout ➔ by Rachel Andrew Building Production-Ready CSS Grid ➔ Tips + tricks from Layouts Today the experts. by Morten Rand-Hendriksen Slides: tinyurl.com/discover-grid 3 CSS Grid Features That Make My ➔ Heart Flutter by Una Kravets qjac.net

  60. Firefox Grid Inspector ➔ The MDN Docs ➔ CSS Tricks Grid Guide ➔ GridBugs ➔ W3C Docs ➔ Essential references. Demos from this talk ➔ Slides: tinyurl.com/discover-grid qjac.net

  61. Tools made for the job Static is still the default ➔ Floats for floating ➔ Tables for tabular data ➔ Columns for text blocks ➔ Absolute for absolute positioning ➔ Fixed for fixing to the viewport ➔ Relative for positioning relative to the default ➔ Flex for one-dimensional flexible layout ➔ Grid for two-dimensional flexible layout ➔ qjac.net

  62. jqdesign.co qjac.net

  63. qjac.net @_qjac @qjac Slides: tinyurl.com/discover-grid qjac.net

  64. qjac.net

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend