How Can I Rearrange Columns in a CSS Grid Layout?

Linda Hamilton
Release: 2024-10-26 14:48:02
Original
253 people have browsed it

How Can I Rearrange Columns in a CSS Grid Layout?

Changing the Column Order in a CSS Grid

In CSS Grid, you can define the layout of a grid by specifying the number of columns and rows using the grid-template-columns and grid-template-rows properties. However, rearranging the order of these columns can be a challenge.

Solution: Grid Auto Flow with the dense Keyword

While there are multiple ways to rearrange grid items, using the dense keyword with the grid-auto-flow property offers a simple and efficient solution:

<code class="css">grid-auto-flow: dense;</code>
Copy after login

The dense keyword tells the browser to automatically fill empty grid cells with grid items, moving them to fill in the gaps while maintaining the specified order.

Applying to the Example

By adding the dense keyword to the existing grid class, the columns will automatically rearrange on a mobile layout to match the desired order:

<code class="css">.my-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: 15% 1fr 25%;
  grid-template-rows: 1fr; /* For as many rows as you need */
  grid-gap: 10px;
  border: 2px solid #222;
  box-sizing: border-box;
}</code>
Copy after login

Result:

---------------------------------------------
|     col 1             |      col 3        |
|                       |                   |
---------------------------------------------
|                     col 2                 |
---------------------------------------------
Copy after login

This solution provides a convenient and robust approach to changing the column order without resorting to pre-processors.

The above is the detailed content of How Can I Rearrange Columns in a CSS Grid Layout?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!