Giter Site home page Giter Site logo

s1gr1d / guide.css-grid-examples Goto Github PK

View Code? Open in Web Editor NEW
4.0 1.0 1.0 2.57 MB

🟪 grid overview with different examples

Home Page: https://css-grid-examples.vercel.app/

CSS 42.71% HTML 55.00% JavaScript 2.29%
css css-grid css-grid-layout hacktoberfest

guide.css-grid-examples's Introduction

CSS Grid Layout

The CSS-Grid lets you define a two-dimensional layout of columns and rows. You can then place elements within the grid, which may fill one cell or multiple columns or rows.

-- Table of Contents --

Grid Terminology

  • Grid Container: The element on which display: grid is applied. It's the direct parent of all grid items.
  • Grid Item: The children of the grid container. Non-direct descendants are no grid items.
  • Grid Line: Make up the structure of the grid. Can be vertical or horizontal. Numbered beginning with 1. The last line also has number -1, counting back in.
  • Grid Cell: Intersection of two rows and columns.
  • Grid Track: The rows or columns between two grid lines.
  • Grid Area: One or more adjacent grid cells that define a rectangle.

grid-parts-terms

A basic grid

Following code creates a 2x2 grid with green items. A grid container always behaves like a block display element, filling 100% of the available width. After declaring the grid-template properties, the grid gets filled with the children of the container.

The length unit fr (fraction) behaves like the flex-grow factor in flexbox and slices the grid up into proportional columns or rows. You could also define the columns/rows in this example with 25% percent each, but this has two issues: we have to calculate the amount of percent by ourselves and by adding a gap we get problems with overflow, as our grid gets wider as 100%.

<div class="container">
    <div>Item 1</div>
    <div>Item 2</div>
    <div>Item 3</div>
    <div>Item 4</div>
</div>
.container {
    display: grid;
    grid-template-columns: 130px 1fr;
    grid-template-rows: 1fr 1fr; 
    gap: 0.5em;
}
.container > * {
    padding: 2em;
    background-color: green;
}

Result:

basic-grid

Positioning Grid Items

Grid items are positioned with grid-row and grid-column.

For positioning a grid item in a specific cell you can write something like this:

.item {
	grid-column: 2;
    grid-row: 3;
}

For spanning the item over a specific area, you can write following syntax to take three rows and two columns:

.item {
    grid-column: 3 / span 2;
    grid-row: 2 / 5;
}

span tells the browser how many grid tracks the item should span, without specifying an explicit grid line. As the last grid line in the grid has the number -1, we can span an item all over e.g. a row track with grid-column: 1 / -1.

Alternate Syntaxes

You can position the items on the grid by naming the grid lines or the grid areas. The choice between these two and the standard syntax is a matter of preference and also depends on the use case.

In summary, there are three different syntaxes: line numbers, named grid lines, named grid areas.

Naming Grid Lines

You can give the grid lines a name by using bracket syntax. For better readability, you can add line breaks and indentation. It is best practice to write a name that describes the content in the track next to the grid line. One grid line can have more than one name - for example when the line is the end of a specific content and the start.

.container {
  grid-template-columns: [grid-start] 40px 50px auto 40px 
      					 [grid-end];
  grid-template-rows: [header-start] 100px 
                      [header-end box-start] 200px 
                      [box-end main-start] 400px 
                      [main-end footer-start] 100px 
                      [footer-end];
}

.item--main {
  grid-column: 2 / grid-end;
  grid-row: main-start / main-end;
}
-- Named set of grid lines --

When using the repeat() function, you can have multiple lines with the same name. The example below creates six named lines, alternately named col-a-start and col-b-start (and the matching "end"-name). We get two columns 3 times, so we have 6 named lines.

To access the lines later (in an item), add a number after the line-name, which indicates to which instance of that line you refer to. The following CSS places the element starting in the second line named col-a-start and ending in the third line named col-b-end.

.grid {
  display: grid;
  grid-template-columns: repeat(3, 	[col-a-start] 1fr 
      								[col-a-end col-b-start] 2fr 
      								[col-b-end]);
}

.item {
    grid-column: col-a-start 2 / col-b-end 3;
}

Naming Grid Areas

Instead of using the grid lines, you can use named areas for positioning the items. This can be done by adding the property grid-template-areas.

It is important that every named grid area forms a rectangle. By using a period as a name you can define an empty grid cell. For better readability, the names are separated with a tab (or a lot of spaces).

.container {
    grid-template-rows: 100px 200px 400px 100px;
    grid-template-columns: repeat(3, 1fr) 200px;    
    grid-template-areas: "  . 	head 	head	. "
                         "box-1 box-2 	box-3 	side"
                         "main  main  	main  	side"
                         "foot  foot  	foot  	foot";
}

Implicit and Explicit Grid

If you are for example working with a large number of items you want to place in a grid or getting an initially undefined number of items from a database, it would not quite possible to place each item explicitly. In such a case it makes more sense to define a grid loosely and let the placement algorithm fill it for you.

By using the grid-template-* properties, you define the explicit grid. But grid items can still be placed outside of these explicit defined grid tracks. Those items will be handled by the implicit grid.

The meaning of the negative numbers is not changed by the implicit grid. The negative grid-line numbers always refer to the explicit grid.

If we have more grid items than we have space for, CSS automatically adds more tracks to the grid to place the items. Implicit grid tracks have the size auto, so they grow to the size necessary to fit the content of the grid items.

In this example we define a 2x2 grid and let the placement algorithm fill the remaining places.

.container {
    display: grid;
    grid-template-rows: repeat(2, 100px);
    grid-template-columns: repeat(2, 300px);
    gap: 30px;
    
    /* height: 1000px;  
       --> if we would define a height, the items in the implicit grid use more height to 			 fill the 1000px
    */    
}

implicit_explicit

-- Position auto-placed items --

The items are added as rows per default. We can change how the auto-placed items get flowed into the grid by using the grid-auto-flow property. For example, grid-auto-flow: column will add columns instead of rows. You can also use the keyword dense to let the algorithm fill the gaps in the grid, even if this would change the order of some grid items.

The right image would be an example for grid-auto-flow: row dense (from MDN):

row-dense

-- Sizing the implicit tracks --

If we want the tracks to have a defined height or width we can use the properties grid-auto-rows and grid-auto-columns and define a specific height (like 200px) or use the minmax() function, to define a size range from a minimum- to a maximum-value

Grid Examples from Practice

All those examples are implemented in the grid-example-website folder.

Creating an Overall Layout (with media-queries)

The overall composition of our page should look like this on desktop and on mobile:

overall-layout

To accomplish such a layout, we have to define a column with a fixed width for the menu and a column for the content. The menu should switch to the top, when the screen gets smaller. For the footer, we can just use the min-content value.

We can get such a layout with defining it with template-areas and media-queries.

.page-container {
    height: 100vh;
    
    display: grid;
    grid-template-columns: 5rem 1fr;
    grid-template-rows: 1fr min-content;
    grid-template-areas:    "menu   content "
                            "footer footer  ";
}

@media only screen and (max-width: 800px) {
    .page-container {
        grid-template-columns: 1fr;
        grid-template-rows: 5rem 1fr min-content;
        grid-template-areas:    "menu"
                                "content"
                                "footer";
    }
}

With CSS grid we can create awesome layouts without media queries (thanks to minmax(), auto-fit and auto-fill), but they are not dead. We should rather think about them differently.

Don’t Target Devices, Add Breakpoints When The Design Breaks

Article from Rachel Andrew

Placing a full-bleed content between paragraphs

Sometime, we need to place content that spans all over the width of a site, while the other content stays in the middle.

full-bleed

Research has shown that the ideal line-length for reading is 45-85 characters, so we give the main column a width of 70ch.

To define such a layout, we create 3 columns: one for the content in the middle and two for the spaces on the right and left side.

We use the minmax() function here to keep the content responsive. On small screens, we still have some space (2rem) on the left and right side of the page. Without the minmax() function, the content would not be responsive.

.full-bleed {
    display: grid;
    grid-template-columns:  [full-start] minmax(2rem, 1fr)  
                            [main-start] minmax(min-content, 65ch) 
                            [main-end]  minmax(2rem, 1fr) 
                            [full-end]; 
}

.full-bleed > img {
    grid-column: full-start / full-end;

    width: 100%;
}

.full-bleed > p {
    grid-column: main-start / main-end;

    margin: 2em 0; /* top/bottom margin */
}

Fully responsive cards without media queries

To show the biggest capability of CSS grid, we create a fully responsive layout with cards. The result should look like this:

Desktop Mobile
responsive-cards-desktop responsive-cards-mobile

The code can be found in grid-example-website/six-cards.css.

1. Base Container

To keep the content-size the same above a certain screen size, a base grid has to be created first, in which we define grid-columns for the content and the margins (as we did with full-bleed). The margins would be between 2rem and 1fr.

.content-container {
    display: grid;
    grid-template-columns:  [full-start] minmax(2rem, 1fr)  
                            [main-start] minmax(min-content, 80rem)
                            [main-end] minmax(2rem, 1fr) 
                            [full-end]; 
}

It would also be possible to create a grid with fixed columns (some inspirations). For example 8 columns with each a fixed width of maximum 10rem:

repeat(8, minmax(min-content, 10rem))

/* with named grid lines */
[main-start] repeat(8, [col-start] minmax(min-content, 10rem) [col-end])
2. Wrapper for all 6 cards

The wrapper for the cards is also a grid. As we want 3 columns for the cards we could simply define a grid just like that:

display: grid;
grid-template-columns: repeat(3, 1fr);

If we reduce the width of the viewport, we have a problem. The number of columns remains 3 and the cards become narrower.

We can use auto-fit for that. auto-fit creates as many tracks as will fit in, without the container overflowing.

.six-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    gap: 5rem;
}

The minmax() function defines the minimum and maximum values for the "auto-fitted" columns. As the cards itself do not have a specified with, the grid defines the with of the card.

To prevent the cards to fill the whole width of the cell (because of the default stretch behavior), we set justify-items: center;.

Creating a gallery (figures as grid items)

With grid, it is very easy to create a gallery with each image being the child of a <figure> Element.

gallery

We define the columns with auto-fit, as we want that the grid will place as many tracks as it can fit. By specifying minmax(10vw, 1fr), the tracks will never be smaller than 10% of the viewport width. As the rows (we define later on) are 10vw in height, this is the minimum value for the minmax, to keep the pictures in a square.

To ensure, that the implicit grid-rows are all the same height, we add the declaration grid-auto-rows: 10vw;. The declaration grid-auto-flow: dense; makes it possible to fill the empty spaces with an image.

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10vw, 1fr));
    
    grid-auto-rows: 10vw;
    grid-auto-flow: dense;
    gap: 1rem;
    margin: 1rem;
}

To keep the aspect ratio of the image with object-fit, we add the following declaration block:

.gallery > figure > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

And to create a certain variety in image sizes, we can span some of our images along the tracks:

.gallery > figure:nth-child(3n) {
    grid-column: span 2;
    grid-row: span 2;
} 

.gallery > figure:nth-child(6n) {
    grid-column: span 3;
    grid-row: span 3;
}

Most important grid features

repeat(): Define a recurring pattern for a large number of grid tracks

auto-fit: A special keyword for repeat(). The grid creates as many tracks as possible without overflowing the container. You can also use auto-fill, but this can result in some empty grid-tracks (CSS Tricks: auto-fill vs auto-fit).

minmax(): It specifies a minimum and a maximum value. The browser will ensure, that the size falls between these values.

Links

CSS Grid Specification (W3C)

CSS Tricks - A Complete Guide to Grid

WebKit Blog - Grid Layout

Book: CSS in Depth

CSS Grid Cheat Sheet

10 single-line CSS layouts

guide.css-grid-examples's People

Contributors

s1gr1d avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

jackiegable

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.