I agree with @JTolley: The great advantage of SASS / LESS over CSS is its increased developer productivity. You can just do a lot more with less code and keep your project structured and beautifully formatted.
@import
If you split style sheets into multiple documents, SASS / LESS preprocessors compile the code into a single CSS file. Importing instructions in simple CSS will result in several requests. Yahoo Best Practices:
Reducing the number of HTTP requests on your page is the place to start.
file size
A style declaration in SASS / LESS will not matter compared to a declaration in simple CSS: they are both CSS. But then again, itβs much easier for me to work beautifully and structured with the framework. Variables, nesting, mixins, and selector inheritance help me to better code and end up with a smaller file size.
Note. Nesting will create a lot of long selectors. Long selectors need more rendering time.
Switching from simple CSS to SCSS and back is easy. CSS is valid. SCSS and SCSS will output CSS.
So give it a try.
allcaps
source share