161. Which CSS property significantly improves rendering performance?
- a) content-visibility
- b) will-change
- c) Both a and b
- d) render-boost
content-visibility: auto skips offscreen rendering, while will-change optimizes animations.
Test your knowledge of CSS with these interactive multiple-choice questions.
161. Which CSS property significantly improves rendering performance?
content-visibility: auto skips offscreen rendering, while will-change optimizes animations.
162. Which CSS feature reduces layout recalculations?
contain limits browser's recalculation scope for complex layouts.
163. Which Chrome DevTools feature identifies unused CSS?
164. Which CSS property prevents expensive paint operations?
165. Which CSS tool removes unused selectors automatically?
166. Which CSS feature minimizes CLS (Cumulative Layout Shift)?
aspect-ratio reserves space, while contain-intrinsic-size helps with content-visibility.
167. Which CSS property enables hardware-accelerated filters?
168. Which CSS technique reduces repaints during animations?
169. Which CSS feature enables progressive rendering?
content-visibility skips offscreen content, while lazy loading defers non-critical resources.
170. Which CSS property enables variable font loading optimization?
font-display: swap shows fallback text immediately.
171. Which experimental CSS feature enables scroll-driven animations?
172. Which CSS feature enables anchor positioning?
top: anchor(bottom) positions relative to another element.
173. Which CSS function enables trigonometric calculations?
174. Which CSS feature enables nested rules natively?
175. Which CSS pseudo-class detects reduced motion preference?
176. Which CSS property enables color font rendering?
177. Which CSS feature enables container-based units?
178. Which CSS property enables declarative drag-and-drop?
draggable attribute + JavaScript.
179. Which CSS feature enables style queries?
@container style(--theme: dark) { ... }.
180. Which CSS property enables text wrapping balance?