Tuesday Tips | Four CSS Grid Properties You Can Use to Create Layouts
Listen now
Description
This Tuesday Tips covers the four CSS Grid properties you need to create layouts. Transcript: Today is April 7th, 2020 and for this Tuesday Tips episode we’re covering the four CSS Grid properties you need to create layouts. Let’s dive in! -- There are four core CSS Grid properties that make up a vast majority of the grid utility. Essentially, if you can master these four you can handle the basics of creating a grid and placing your page elements inside it. Before using these four grid properties we of course must set the “display” property to “grid”. Once we do that we have put our child elements inside a grid. You can also create multiple grids on one page to ensure that your layout doesn’t get too out of hand. The first property that we’re going to discuss is “grid-template-columns”. This is applied to the grid container element and is used to define the columns of the grid. This property doesn’t just layout the columns but the widths of those columns. If you were to set this property to “200px 200px 200px”, your grid would have three columns each 200px wide. The second property, similarly defined on the grid containing element we made, is “grid-template-rows”. This functions the exact same way as”grid-template-columns” but defines the number and heights of the rows. For both the properties you can use values common to some other properties, like percentages, auto or px. But a great feature of grids is the fractional value, or fr. This value takes up a fraction of the space remaining, so in its basic form it is similar to percentages in that if you set the three columns each to 1fr they would each take up one third of the width. However, it can also be used in combination with other values. For example, if we set the columns to “200px 1fr 2fr”, the first column would be 200px wide the second would take up 1 fraction of the remaining space and the third would take up two fractions of the remaining space. So, the second column would be one-third of the remaining space and the last column would fill up the remaining two-thirds. This allows for some pretty dynamic layouts! The third property is “grid-gap”, also set on the grid containing element. This sets the spacing between all grid elements, however it is different from a margin because there is no spacing around the outside of the grid. Think of it as if the grid was a tic-tac-toe board, the grid gap would be the spacing where the lines are drawn, so where two boxes touch. This property can be more specific by using “grid-column-gap” or “grid-row-gap” to set these values independently. The final properties are “grid-column” and “grid-row” which allow us to place child elements in the grid. You can set span values for these properties on the child elements to delineate how many rows and / or columns that element should take up. So, for example, you could set the child element’s “grid-column” property to “span 3” and it would go across three grid columns. With these handful of CSS Grid properties you can quickly and easily create website layouts. It is especially great for creating a wireframe or low fidelity mockup. Once you’ve mastered these you’ll feel confident taking on the more advanced properties. -- Today’s Tuesday Tips episode was adapted from a post on CSS-Tricks. -- Want to know more? Head to fewdaily.com for more of today’s topics and other front-end web content! That's all for today, tune in tomorrow! --- This episode is sponsored by · Anchor: The easiest way to make a podcast. https://anchor.fm/app Support this podcast: https://anchor.fm/fewdaily/support
More Episodes
Published 01/28/21
Today is January 28, 2021, and for this Thursday Thoughts episode we're covering: Getting Your First Dev Job What You Should Do as a Junior Developer Helping Developers Be Leaders Let's dive in! ---- When starting off as a web developer it can be difficult to juggle learning and job...
Published 01/28/21
Today is January 27, 2021, and for this Wednesday Wisdom episode we're covering: Fullstack Development Trends Responsive CSS Frameworks State of Design in 2021 Let's dive in! ---- Fullstack development has moved from rarity to commonplace over the past few years. In 2021 it is easier...
Published 01/27/21