Sizing Up Layouts: A Detailed Guide to CSS fr Unit

Shreya Trivedi

Posted On: March 20, 2024

view count71843 Views

Read time18 Min Read

Responsive design has become a cornerstone of modern web development, ensuring smooth experiences across diverse screens.

However, achieving responsiveness can be challenging. Traditional approaches relying on fixed pixel values often fail across different screen sizes and resolutions. Similarly, using percentages offers fluidity, but when elements are nested, they inherit percentages from their parents, leading to tricky calculations.

This is where the CSS fr unit (or fractional units) comes in handy when your web page structure becomes more complex. It provides a flexible solution that lets your web designs change smoothly to fit different screen sizes.

Whether developing a single-page application or an eCommerce platform, the CSS fr unit can elevate your design and enhance the user experience. It allows you to move beyond the limitations of pixel-based layouts and provides a flexible approach.

What is a CSS fr Unit?

CSS grid layout introduces a unit of measurement known as the fr unit, which adds flexibility to how we handle layout structures. CSS fr units divide the available space into fractions, so you can create layouts responsive to different screen sizes without having to set fixed breakpoints.

The fr unit, short for fraction, distributes available space among elements proportionally. It allows you to divide the available space based on specified fractions, giving each element a share of the total space.

When using the fr unit in the CSS grid layout, you can easily add or remove rows and columns without adjusting their sizes. With the help of CSS fr units, rows, and columns adapt themselves automatically when you add gaps to them.

When you specify a width of 1fr for a grid column or a child element, you establish a proportional relationship within the available space. You can add as many child elements as needed, and the browser automatically handles space distribution.

browser automatically handles space distribution

Unlike traditional methods, where you need to calculate and redistribute space for every additional element, CSS fr units simplifies the process.

For instance, if you have a container with a grid template column of 1fr 2fr 1fr, the available horizontal space within the container is divided into four parts.

have a container with a grid template column

See the Pen
Dividing grid containers
by Shreya Trivedi (@shreya-201)
on CodePen.

In this example, the grid is divided into three columns. The first and third columns each take up one fractional unit (1fr), and the second column takes up two fractional units (2fr). This means the second column will take up twice as much space as the other columns within the available space.

For a 1200px grid, columns one and three each occupy 300px (1/4th), while the center column takes the remaining 600px (1/2).

Info Note

Test your CSS grid layouts on the latest desktop and mobile browsers. Try LambdaTest Today!

Why Use CSS fr Units?

Fractional units in CSS provide a flexible and responsive approach to web design. Using CSS fr units, you can create layouts that adapt smoothly to different screen sizes and resolutions, ensuring a consistent and optimal user experience across various devices.

Here is why the CSS fr unit is important to use in your web designs:

Responsive Design

It is one of the crucial aspects of today’s business. Responsive design is essential for a solid web presence. Therefore, your website must adapt to flexible grids, fluid layouts, and different font sizes across mobile screen sizes. The responsiveness of a web design is a critical factor for 94 percent of people when evaluating a website.

According to GoodFirms, 73.1% of web designers believe that a non-responsive design is the top reason visitors leave a website.

73.1% of web designers believe that a non-responsive design

CSS fr units allow elements to scale proportionally based on the available space. As the viewport size changes, the elements automatically adjust their sizes to maintain the desired proportions.

This flexibility ensures your design looks great on devices with different screen dimensions, from small smartphones to large desktop monitors.

Let us take an example to understand this:

HTML:

CSS:

Output:

grid-template-columns property is set

See the Pen
Implementing Responsive Grids with Fractional Units
by Shreya Trivedi (@shreya-201)
on CodePen.

In the above-given example, the grid-template-columns property is set to 1fr 1fr 1fr, meaning each column will occupy an equal fraction of the available space within the grid container. This allows the columns to dynamically adjust their widths based on the size of the container.

Fluid Grid Systems

CSS fr units are particularly useful for creating fluid grid layouts.

A fluid grid layout is a web design approach that defines the dimensions of elements within a grid using relative rather than fixed units. This allows the layout to adapt and respond dynamically to different screen sizes and devices, providing a consistent user experience across various resolutions.

In a fluid grid layout, the widths and heights of elements are defined proportionally, typically in relation to the dimensions of their parent container or the viewport. This means that as the viewport size changes, the layout adjusts accordingly, with elements expanding or contracting to fill the available space while maintaining their relative positioning within the grid.

By assigning fractions of available space to grid columns or rows, you can achieve a responsive grid system that adapts to the content and the screen size.

assigning fractions of available space to grid columns

To illustrate this, let’s take an example of the McKinsey website that uses CSS fr units to create a responsive grid layout. The grid layout ensures the website’s content is always visually appealing, regardless of the screen size or device.

example of the McKinsey website that uses CSS

The choice to use 1fr within a minmax function is particularly noteworthy. By allowing the columns to shrink to a minimum size of 0, content within these columns can adapt and scale efficiently. This approach prevents content from becoming overly compressed or overflowing the grid when the viewport size is reduced, ensuring optimal readability and user experience across various devices.

Similarly, GitHub uses CSS fr units to create a responsive grid layout.

GitHub uses CSS fr units to create a responsive grid layout.

The 1fr value tells the browser to allocate equal space to the first column. The var(–Layout-pane-width) value is a custom CSS variable that specifies the width of the second column.

This code ensures that the second column is always the same width as the sidebar, regardless of screen size or device. This is important because it ensures the website’s main content area is always visible, even on small screens.

Simplified Layout Calculations

If you want to achieve equal spacing using pixel units and the layout becomes more complicated, the calculations can become more challenging, too. Let’s consider a simple example: You want to create a layout with three columns, each with equal spacing between them.

In this example, each column has a width of 100 pixels, and you want equal spacing between them. To calculate the spacing, you need to subtract the total width of the columns from the total available width and divide the remaining space equally among the gaps.

Let’s consider you have a container with a total width of 400 pixels; the calculation formula for spacing would be:

Total Available Width = 400px

Total Column Width = 100px + 100px + 100px = 300px

Total Spacing = Total Available Width – Total Column Width

= 400px – 300px

= 100px

Number of Gaps = Number of Columns – 1 = 3 – 1 = 2

Spacing Between Columns = Total Spacing / Number of Gaps

= 100px / 2

= 50px

So, add a 50px spacing between each column to achieve equal spacing.

That’s a lot of calculation to do!!! Using CSS fr units can simplify the process of designing responsive layouts. Instead of performing complex calculations or relying on media queries, CSS fr units allow you to directly define proportions and relationships between elements.

This makes the code more intuitive and easier to manage, improving efficiency and reducing development time.

Browser Compatibility of CSS Fractional Units

Browser compatibility is crucial in ensuring a consistent user experience across different platforms in web design. With CSS fractional units, layout creation has become a flexible approach that adapts to varying screen sizes.

However, the effectiveness of these CSS fr units relies heavily on their consistent interpretation across different web browsers. Web developers need to be aware of which browsers support these fractional units and understand how each browser interprets them.

Browser Compatibility of CSS Fractional Units

Source

However, if you use CSS fractional units, it’s important to test websites in different browsers to ensure they work as intended. To do this, you can harness cloud-based testing platforms like LambdaTest. It is an AI-powered test orchestration and execution platform that allows you to test websites for cross browser compatibility on an online browser farm of real browsers, devices, and operating systems. You can test from various Windows, macOS, Android, and iOS versions running the latest and legacy browsers.

Using LambdaTest’s Real Time Browser Testing feature, you can perform cross browser testing of your CSS fr units across different browser and OS combinations.

Join the LambdaTest YouTube Channel for tutorials on automation testing, mobile app testing, and more!

Benefits of CSS Fractional Units

Using fractional units in CSS helps you create flexible layouts that adapt to any screen size. Here are some of its benefits and how they can elevate your design process:

  • Effortless Responsiveness: Fractional units represent a portion of the available space, so your elements will resize automatically for specific devices.
  • Precise Control: Fractional units give you the power to make minute adjustments without relying on rigid pixel values.
  • Sustainable Code: CSS fr units promote cleaner, more maintainable code. Your layouts will scale effortlessly as your project grows, saving you time down the road.
  • Focus on Accessibility: Fractional units play a crucial role in inclusive design. By ensuring layouts adapt to various screen sizes, you create a user-friendly experience for everyone.
  • Modern Design Approach: CSS fr units represent a forward-thinking approach, keeping your projects adaptable and relevant.
  • Beyond Responsiveness: The benefits extend beyond responsiveness! You can use fractional units for precise typography control, iterative design refinement, and even optimizing rendering performance for a smoother user experience.

Different Ways of Using CSS fr Units

CSS offers a powerful way to create flexible layouts: fractional units. But how do we leverage them in real-world situations? Let’s explore some common scenarios where fractional units shine.

Proportional Image Sizing Space

When using the fr unit in a CSS grid, space is distributed proportionally among the elements defined with fr values. For instance, if two elements have 1fr each, they will share the available space equally, creating a balanced layout.

Moreover, the CSS fr unit enables responsiveness, adjusting dynamically based on the container’s size. Thus, it is ideal for designing fluid and adaptive web layouts.

Let’s look at an example to understand it in detail. 

HTML: 

CSS:

 In the above code snippet, the grid-template-rows property is set to auto 1fr auto, meaning:

  • The first-row height is determined by its content (auto), allowing it to adjust based on the height of the header.
  • The second-row takes up one fraction of the available vertical space (1fr), which means it occupies the remaining space after allocating the heights for other rows. This ensures that the main content area expands to fill the remaining vertical space within the container.
  • The third-row height is also determined by its content (auto), allowing it to adjust based on its content, such as footer content if present.

Distribution

See the Pen
Distributing Space Using fr Units
by Shreya Trivedi (@shreya-201)
on CodePen.

Balanced Content Distribution

The fr unit in CSS grid layouts lets you achieve balanced content distribution due to their inherent flexibility and responsiveness. By assigning fractional values to grid tracks, you can specify how space is allocated within the layout. This allows for precise control over content distribution, ensuring each element receives its fair screen share.

Additionally, CSS fr units promote efficient use of space by dynamically adjusting the size of grid tracks based on their fractional values. This results in optimized content presentation across various devices and screen resolutions.

HTML:

CSS:

The .container class utilizes a grid layout with grid-template-columns: 1fr 1fr;.

Here, the 1fr represents a fractional unit, indicating that each column should take up an equal share of the available horizontal space within the grid.

In this case, the grid is divided into two columns of equal width, and the content is distributed proportionally.
property

See the Pen
css grid layouts using fr units
by Shreya Trivedi (@shreya-201)
on CodePen.

In the given example, the grid-template-columns property is set to 1fr 1fr, meaning each column will occupy an equal fraction of the available horizontal space within the grid container. This allows the sidebar and main content areas to dynamically adjust their widths based on the container’s size. Using CSS fr units helps create a responsive layout where both areas expand or contract proportionally as the viewport size changes.

Simplified Media Queries

CSS media queries are helpful for creating responsive web designs, but they can also be complex and challenging to maintain. CSS fractional units can help simplify media queries by allowing you to develop layouts responsive to different screen sizes without setting fixed breakpoints.

By implementing responsive design best practices, you can create a website that looks great, functions seamlessly, and delivers an optimal user experience across all devices.

Responsive testing tools like LT Browser by LambdaTest can help developers and testers build, test, and debug their websites for responsiveness.

LT Browser is a Chromium-based mobile-friendly browser that allows you to perform responsive testing of your web designs across 50+ pre-installed device viewports, including mobile, tablet, desktop, and laptop.

Let’s say you want to create a layout with two columns that are each 50% wide on a desktop screen but resize proportionally on smaller screens. Using fractional units, you can easily create smooth layouts without tricky calculations.

HTML:

CSS:

The .pricing-container CSS class employs fractional units to create a flexible and responsive grid layout. The grid-template-columns: 1fr 1fr; declaration assigns each column an equal share of available horizontal space, making them responsive to different screen widths.

The use of 1fr as a fractional unit ensures that both columns adapt dynamically, so if the viewport is wider, each column will expand. If it’s narrower, they will shrink accordingly. This responsive design ensures that the pricing container effectively utilizes available space, making it ideal for presenting pricing options that adjust seamlessly to various screen sizes while maintaining a balanced appearance.

pricing cards

n>See the Pen
Responsive design with css fractional units
by Shreya Trivedi (@shreya-201)
on CodePen.

In the above-given example, the grid-template-columns property is set to 1fr 1fr, meaning each pricing card will occupy an equal fraction of the available horizontal space within the pricing container. This ensures that the pricing cards are evenly distributed across the container, regardless of the viewport size. The use of CSS fr units helps create a responsive layout where both pricing cards expand or contract proportionally as the viewport size changes.

Flexible Sidebar

Using CSS fr units allows you to allocate space proportionally, ensuring that the sidebar’s width adapts seamlessly to the available space. This proportional sizing is vital for creating a visually balanced sidebar with the main content area.

As the screen size varies, whether on different devices or by resizing the browser window, the CSS fr unit dynamically adapts the width of the sidebar. This adaptability ensures the sidebar remains functional across various viewport devices and screen dimensions. You can easily define the sidebar width without resorting to fixed or complicated calculations.

Let us understand it with the help of an example:

HTML:

CSS:

The grid-template-columns: 1fr 3fr 1fr property defines the columns of the grid layout. It splits the available horizontal space into three columns. The 1fr and 3fr parts indicate how much of that space each column should take.

The first column (for the sidebar) is set to 1fr, meaning it takes up one part of the total available space. The second column (for the main content) is set to 3fr, indicating it takes up three parts. The third column (for the right bar) is again set to 1fr, taking up one part.

The use of fr ensures that each column’s width is flexible and adapts proportionally to the available space. So, if the total width of the screen changes, the sidebar, main content, and right bar adjust their widths accordingly.

The grid-template-rows: auto 1fr auto property defines the rows of the grid layout. It specifies the height of each row.

The first row (for the header) is set to auto, meaning it adjusts its height based on the content. The second row (for the main content) is set to 1fr, indicating it takes one part of the available vertical space. The third row (for the footer) is also set to auto, adjusting its height based on the content.

In the above code, fr values are also adjusted at different breakpoints to create flexible layouts that adapt to various viewports.

See the Pen
Flexible sidebar with fr units
by Shreya Trivedi (@shreya-201)
on CodePen.

adjustedatdifferent

Conclusion

CSS fr units have simplified the approach to layout design, making it more flexible and responsive. It helps you create designs that quickly adapt to different screen sizes and resolutions. This simplifies the development process and improves user experience across various device viewports.

By allowing you to specify sizes in fractions of available space, CSS fractional units provide a more intuitive and fluid way to handle spacing. This eliminates the need for fixed pixel values, making designs more adaptable. The responsiveness achieved through fractional units ensures that websites and web applications look and function well on everything from large desktop monitors to small mobile screens.

By leveraging fractional units, you can minimize the need for media queries and breakpoints, streamlining the development process and reducing the overall complexity. This also leads to more scalable and maintainable code.

Adopting CSS fractional units offers an elegant and effective solution to challenges related to layout adaptability, code complexity, and maintenance efforts.

Frequently Asked Questions (FAQs)

What unit is fr in CSS?

The FR unit in CSS doesn’t actually have a full form. It stands for fractional unit itself.

What is the fr unit of measurement in CSS?

fr is a flexible unit introduced specifically for CSS grid layout. It represents a fraction of the available space on the grid. This makes it ideal for creating responsive layouts that adapt to different screen sizes.

Author Profile Author Profile Author Profile

Author’s Profile

Shreya Trivedi

Shreya is a Frontend Developer and Technical Content Writer driven by a deep passion for crafting captivating web experiences that seamlessly combine visually stunning designs with valuable content for users. With expertise in technical content writing, Shreya possesses the unique ability to produce informative and engaging articles that both educate and inspire readers. Her strength lies in simplifying complex technical concepts, making them accessible to a wide audience and positioning her as an excellent fit for technical writing positions.

Blogs: 2



linkedintwitter

Test Your Web Or Mobile Apps On 3000+ Browsers

Signup for free