Use rem or em for text size
Don't use pixels in your CSS, use rem
or em
instead. Pixels will not scale if a user stylesheet is applied to the page, or if the page is viewed on a small screen.
- Set the base font size to 100%.
- Calculate the desired ems for particular element by dividing the desired pixels by the base font size, which is typically 16px.
body: { font-size: 100%; } h1 { font-size: 1.5rem; /* 24px ÷ 16px per rem */ } .footnote { font-size: 0.5rem; /* 8px ÷ 16px per rem */ }
Use rem or em for container sizes
Use rem
or em
for the document width, column widths and any other dimensions that affect the layout of the page. If you use ems for text and pixels for the container of that text, then enlarging the font will just squish the text into a tiny space.
body: { min-width: 50rem; /* 800px ÷ 16px per rem */ max-width: 64rem; /* 1024px ÷ 16px per rem */ } .sidebar { width: 12rem; /* 200px ÷ 16px per rem */ }
Use CSS to help images scale
If you are using a background image for anything, set the CSS background-size
property to allow the image to scale when the element scales.
.banner { width: 30rem; height: 5rem; background-image: url('images/banner.png'); background-size: contain; /* scale image to fit container */ } .sidebar { background-image: url('images/sidebar-accent.png'); background-size: 50% 100%; /* half the width and the full height of the container */ }