What Is the Rem Unit in Css

Dan Gold

Written by Dan

The rem unit in CSS (Cascading Style Sheets) is a relative length unit that is becoming increasingly popular for responsive web design. It stands for “root em” and is used to define font sizes, spacing, and other layout elements. This post will dive into what the rem unit is, how it works, and why it’s advantageous in modern web design.

Understanding the Rem Unit

Relative to the Root Element

The rem unit is relative to the font size of the root element of the document, typically the <html> element. This means that 1rem equals the font size of the <html> element. If the font size of the <html> element is 16px, then 1rem is also 16px.

Consistency Across Elements

Unlike the em unit, which is relative to the font size of its parent element, rem provides consistency across elements. Changing the font size of a parent element does not affect the size of elements styled with rem, which are always relative to the root font size.

Rem vs. Other CSS Units

Rem vs. Pixel

Pixels (px) are absolute units and do not change based on the context. Rem units, being relative to the root font size, offer better scalability and responsiveness, especially important in today’s varied screen sizes and user settings.

Rem vs. Em

Em units are relative to the font size of their parent element, which can lead to compounding sizes in nested elements. Rem units avoid this issue by being consistently relative to the root font size, making them more predictable and easier to manage in complex layouts.

Rem vs. Percentage

Percentage units are relative to the parent element’s size, not just the font size. Rem units offer a more straightforward approach for defining sizes that are consistent and relative to a single, root font size.

Using the Rem Unit in CSS

Setting a Base Font Size

html {
  font-size: 16px;
}

Applying Rem to Elements

h1 {
  font-size: 2rem; /* 32px if the html font-size is 16px */
}

p {
  margin-bottom: 1rem; /* 16px if the html font-size is 16px */
}

Best Practices for Using Rem Units

Define a Base Font Size

Set a base font size on the <html> element. This size will serve as the reference point for all rem units in your CSS.

Use Rem for Global Spacing and Sizing

Utilize rem units for defining global spacing (like margins and paddings) and sizing (like widths and heights) to maintain consistency and scalability across your design.

Mix Units When Appropriate

In some cases, mixing units like rem, em, and pixels can be effective. For example, using em for local spacing within a component and rem for global spacing and layout.

Responsive Design

Leverage rem units in responsive design to ensure elements scale appropriately across different devices. Rem units can be particularly useful in media queries.

Wrapping up

The rem unit in CSS offers a scalable and accessible way to define sizes in web design. By being relative to the root font size, rem units provide consistency and ease of management, making them a valuable tool for responsive and modern web design.

Last updated

November 18th, 2023