You're refactoring a website's CSS and want to separate styles that apply to layout from those that apply to modules. Which methodology would provide guidelines for this type of separation?

  • ITCSS (Inverted Triangle CSS)
  • ACSS (Atomic CSS)
  • RSCSS (Reasonable System for CSS Stylesheet Structure)
  • OOCSS (Object-Oriented CSS)
To separate styles that apply to layout from those that apply to modules, you should consider the ITCSS (Inverted Triangle CSS) methodology. ITCSS offers a scalable and logical structure for your stylesheets, with layers that guide you in distinguishing between core layout styles and module-specific styles, promoting maintainability and organization.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *