During a site audit, you notice that unminified CSS is delaying the page's Load Time. Which CSS minification and optimization technique would you recommend to improve performance?
- Tree shaking
- CSS gzip compression
- Optimize CSS delivery using a Content Delivery Network (CDN)
- Use CSS sprites for background images
Minifying and compressing CSS with gzip reduces file size and speeds up load time. Other options may offer benefits, but CSS gzip compression directly addresses unminified CSS impacting load time.
Loading...
Related Quiz
- What is the primary goal of CSS minification?
- In what way do SASS Variables differ from CSS Variables in terms of scope?
- The BEM methodology suggests a naming convention where the block is separated from the element by a ________.
- What is the result when an element does not have a specific style defined but its parent does?
- How does an element with position: sticky; behave when scrolling past its container?