Loading...
1200 pixels converts to 75rem when the root font-size is 16px (the browser default). This conversion is calculated by dividing the pixel value by the base font size: 1200 ÷ 16 = 75.
Formula
1200px ÷ 16 = 75rem
/* 1200px as rem */
.element {
max-width: 75rem; /* 1200px */
}A value of 1200px (75rem) is commonly used for desktop breakpoints, full-width containers, max-width constraints, and viewport-related sizing. In responsive web design, using 75rem instead of 1200px ensures your desktop containers and breakpoints scale proportionally when users change their browser font size settings.
REM units are relative to the root element's font-size, making them ideal for accessible, responsive designs. When you write 75rem instead of 1200px, your layout respects user preferences — if someone sets their browser to a larger font size for readability, all your rem-based values scale up proportionally.
| px | rem |
|---|---|
| 8 | 0.5 |
| 10 | 0.625 |
| 12 | 0.75 |
| 14 | 0.875 |
| 16 | 1 |
| 18 | 1.125 |
| 20 | 1.25 |
| 24 | 1.5 |
| 32 | 2 |
| 48 | 3 |
| 64 | 4 |
| 96 | 6 |
Convert any value instantly with our free PX to REM Converter.
Open PX to REM Converter →