01Introduction to Responsive DesignWeb design has shifted from creating single static layouts to adapting designs for devices ranging from watches to TVs2 min
02CSS Units OverviewCSS units are categorized into absolute units (fixed size like pixels), relative units, and percentages4 min
03Working with PercentagesUsing percentages for layout widths simplifies the math compared to calculating fixed pixel values for different screen sizes11 min
04Controlling Size with Min and Max WidthThe `max-width` property prevents a container from growing too wide on large screens, improving text readability3 min
05The EM UnitThe EM unit is relative to the font size of the parent element, making it useful for scalable typography6 min
06The REM Unit and Compounding IssuesUsing EM units for font sizes can cause a compounding effect where nested elements become disproportionately large7 min
07Choosing Between UnitsCSS pixels are now 'reference pixels' with a fixed size, resolving historical issues with varying screen resolutions4 min
08Practical Example: Buttons and SpacingUsing REM for font sizes on button modifiers ensures text scales consistently across different button variants6 min