- Aspect Ratio
- The proportional relationship between an element's width and height, expressed as width / height. The CSS aspect-ratio property enforces this relationship automatically when only one dimension is constrained.
- Intrinsic Size
- The natural width and height of a replaced element (like an image or video) determined by its content rather than CSS rules. aspect-ratio interacts with intrinsic size to resolve final dimensions.
- Padding Hack
- A legacy technique for maintaining aspect ratios by setting padding-top or padding-bottom to a percentage of width on a zero-height element, exploiting CSS's percentage-padding calculation from parent width.
- Object Fit
- A CSS property for replaced elements (img, video) that controls how content fills its container. object-fit: cover scales to fill, cropping excess; object-fit: contain scales to fit, leaving empty space.
- Responsive Media
- Media elements — images, videos, iframes — that scale fluidly with their containers rather than using fixed pixel dimensions. Achieved by combining width: 100%, max-width, and aspect-ratio.
- Cinemascope
- An ultrawide aspect ratio of approximately 21:9 or 2.39:1 originally from film production. Used in web design for cinematic hero banners and immersive full-width background video.