Stands For Syntactically Awesome Style Sheets
Adds more power to the process of writing css.
Are you still using straight up old school CSS for your stylesheets? Stop. Right now. Do yourself a favor and take a day to learn about modular CSS, whether it be Sass or Less.
It’s important to keep in mind that we separate style out of the structure for several reasons: to avoid duplication, to make it easier to maintain code, and to have the ability to reuse content with different styles for different purposes. If done correctly, we have smaller file sizes, which leads to faster page loads times, which results in happier users and more favorable search engine rankings. Modular CSS takes this idea and injects it with steroids. Not only does it help keep the website file structure stay as organized and clean as possible, it’s also a super fun to code in.