CSS Grid Layout: The Fr Unit
Last Updated :
23 Sep, 2024
The CSS Grid Layout module is used to create a grid-based layout system. Which uses rows and columns, it simplifies the design of webpages without relying on floats and positioning of the elements.
Syntax:
.class {
display:grid;
}
Note: An HTML element becomes a grid if that element sets display:grid
- grid-template-columns: This specifies the size of the columns
- grid-template-rows: Specifies the size of the rows.
- grid-gap: sets the gaps between rows and columns.
Some grid-template-columns keyword values:
- grid-template-columns: repeat( [ <positive-integer> | auto-fill | auto-fit ], <track-list> );
- grid-template-rows: repeat( [ <positive-integer> | auto-fill | auto-fit ], <track-list> );
Represents a repeated fragment of the tracklist, allowing a large number of columns that exhibit a recurring pattern to be written in a more compact form. It allows you to define a pattern repeated X times.
- grid-template-columns: auto;
- grid-template-rows: auto;
Indicates auto-placement, an automatic span, or a default span of one Column is fitted to the content in the column. The row is fitted to the content in the row.
- grid-template-columns: minmax(min, max);
- grid-template-rows: minmax(min, max);
The Fr Unit
The fr unit is a fractional unit, an input that automatically calculates layout divisions when adjusting for gaps inside the grid.
Key Points:
- The fr unit allows you to define grid tracks as fractions of the available space.
- If a grid container has 4 columns with 1fr each, they will each take up an equal amount of space, i.e., each column will be 25% of the available space.
- Using different fractional values allows for varied column sizes within the same grid.
Examples of CSS Grid Layout: The Fr Unit
Example 1: Using the fr Unit in CSS Grid
This example demonstrates the use of the fr unit in CSS Grid, where each grid column takes up an equal fraction of the available space.
html
<!DOCTYPE html>
<html>
<head>
<style>
.container {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-rows: 100px;
grid-gap: 10px;
}
.container div {
border: 3px black;
border-radius: 7px;
background-color: yellowgreen;
padding: 1em;
text-align: center;
color: darkgreen;
}
h1 {
color: green;
text-align: center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<div class="container">
<div>geeksforgeeks 1</div>
<div>geeksforgeeks 2</div>
<div>geeksforgeeks 3</div>
<div>geeksforgeeks 4</div>
</div>
</body>
</html>
Output:
output 1We have 4 columns each taking up the same amount of space. Each has a width of 1fr. Each column is equal. 1fr=25% of the available space.
Example 2: Using the fr
Unit with Different Fractional Values
In this example, we define a grid with columns that use different fractional units, allowing certain columns to take up more space. The first two columns each take up 1fr
(one fraction of the available space), while the next two columns take up 2fr
each, which gives them twice as much space as the first two columns.
html
<!DOCTYPE html>
<html>
<head>
<style>
.container {
display: grid;
grid-template-columns: 1fr 1fr 2fr 2fr;
grid-template-rows: 100px 150px 200px 200px;
grid-gap: 10px;
}
.container div {
border: 3px black;
border-radius: 7px;
background-color: yellowgreen;
padding: 1em;
text-align: center;
color: darkgreen;
}
h1 {
color: green;
text-align: center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<div class="container">
<div>geeksforgeeks 1</div>
<div>geeksforgeeks 2</div>
<div>geeksforgeeks 3</div>
<div>geeksforgeeks 4</div>
<div>geeksforgeeks 5</div>
<div>geeksforgeeks 6</div>
<div>geeksforgeeks 7</div>
<div>geeksforgeeks 8</div>
<div>geeksforgeeks 9</div>
<div>geeksforgeeks 10</div>
<div>geeksforgeeks 11</div>
<div>geeksforgeeks 12</div>
<div>geeksforgeeks 13</div>
<div>geeksforgeeks 14</div>
<div>geeksforgeeks 15</div>
<div>geeksforgeeks 16</div>
</div>
</body>
</html>
Output:
output 2We have 4 columns, the first two columns take up the same amount of space i.e. 1fr, and the last two columns take up the same amount of space i.e. 2fr.
Example 3: Using the fr
Unit with repeat()
and auto
Notation
In this example, the repeat()
function is used to create multiple columns of equal size, while auto
ensures that the row height adjusts automatically based on the content. This combination is useful when you want a dynamic and responsive grid layout.
html
<!DOCTYPE html>
<html>
<head>
<style>
.container {
display: grid;
grid-template-columns: repeat(2, 1fr) repeat(2, 2fr);
grid-template-rows: auto;
grid-gap: 10px;
}
.container div {
border: 3px black;
border-radius: 7px;
background-color: yellowgreen;
padding: 1em;
text-align: center;
color: darkgreen;
}
/* Designing h1 element */
h1 {
color: green;
text-align: center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<div class="container">
<div>geeksforgeeks 1</div>
<div>geeksforgeeks 2</div>
<div>geeksforgeeks 3</div>
<div>geeksforgeeks 4</div>
<div>geeksforgeeks 5</div>
<div>geeksforgeeks 6</div>
<div>geeksforgeeks 7</div>
<div>geeksforgeeks 8</div>
<div>geeksforgeeks 9</div>
<div>geeksforgeeks 10</div>
<div>geeksforgeeks 11</div>
<div>geeksforgeeks 12</div>
<div>geeksforgeeks 13</div>
<div>geeksforgeeks 14</div>
<div>geeksforgeeks 15</div>
<div>geeksforgeeks 16</div>
</div>
</body>
</html>
Output: repeat(number of columns/rows, the column width we want);
output 3Supported Browsers
The fr unit is supported by all major modern browsers:
- Google Chrome
- Firefox
- Safari
- Opera
- Microsoft Edge
Note: Older versions of Internet Explorer (IE11 and earlier) do not support CSS Grid or the fr unit. For full compatibility across older browsers, consider using fallbacks or polyfills.
Similar Reads
CSS Grid Layout Module
CSS Grid Layout is used to design responsive web layouts with rows and columns. It allows you to place items exactly where you want, making it easier to create flexible and modern web pages.Unlike older methods like floats, CSS Grid gives more control over alignment and adapts well to different scre
5 min read
Holy Grail Layout with CSS Grid
The Holy Grail layout is a widely used web layout that consists of a header, footer, left sidebar, right sidebar, and main content area. This layout is expected to be responsive and adapt to different screen sizes. Despite the varying content lengths, the layout should maintain its structure and ens
2 min read
CSS Grid Layout auto-placement
Auto placement in CSS Grid layout refers to the automatic placement of grid items in the grid container when explicit placement is not found. The CSS Grid Layout provides a mechanism to control how items are placed on the grid when their positions are not specified. This helps in creating layouts wi
3 min read
Pure CSS Grids Units Sizes
Pure CSS is a CSS framework. It is a free and open-source tool collection for creating responsive web applications. It was developed by Yahoo and is used for creating faster, more beautiful, and more responsive layouts. Pure Grids are easy to work with and very powerful in creating grid layouts in w
3 min read
Tachyons Layout Basic Grid
Tachyons Layout Basic Grid is a layout with rows and columns, making it easier to design web pages without having to use floats and positioning. We can create a variety of grids by combining widths, float, and padding. Syntax: <element-name class="class-name"></element-name> Tachyons Lay
2 min read
Tachyons Layout Debug with a Grid
Tachyons is a toolkit that is used to create a responsive website. In this article, we will learn how to define any layout using the Tachyons toolkit. Every website is divided into various parts like a header, menus, content, and a footer. Tachyons layout is used to define those sub-parts of a websi
2 min read
Realizing Common Layouts Using CSS Grids
CSS Grid is a powerful layout system that allows us to create complex, responsive designs with ease. It is perfect for creating structured and responsive web designs. CSS Grid lets us define both the overall grid and the placement of individual items within it, making it incredibly versatile for var
4 min read
How to Create Dynamic Grid Layout using CSS?
A dynamic grid layout using CSS can help us to build responsive and flexible web designs. In this article, we are going to learn about different approaches to achieving dynamic grid layouts, with their syntax, and example code for each method. A dynamic grid layout adjusts based on the content and s
3 min read
BootStrap 5 Layout Grid System
BootStrap5 Layout Grid system is responsive. It comes with a flexbox and allows up to 12 columns across the page. You can also group the columns together. The grid system is a powerful mobile-first responsive flexbox grid. How it works: Hereâs how the grid system comes together: Its grid supports si
3 min read
Primer CSS Gutters Grid
Primer CSS is a free open-source CSS framework that is built upon systems that create the foundation of the basic style elements such as spacing, typography, and color. This systematic method makes sure our patterns are steady and interoperable with every other. Its approach to CSS is influenced by
3 min read