-2

I was using Sass sometimes but recently I've heard somethings about Susy, are they same or what is the exact different between them ?

Freeman
  • 9,464
  • 7
  • 35
  • 58
  • This isn't a good fit for Stack Overflow. We expect questions to lead to correct answers, but this can't do that; All answers could be valid and it's unlikely any will be more valid. – the Tin Man Jun 23 '15 at 00:50

3 Answers3

3

Susy is a grid library based on SASS.

SASS is a language that compile to CSS.

Simple as that. =)

Fernando Jorge Mota
  • 1,506
  • 1
  • 10
  • 13
0

SASS is a CSS preprocessor.

CSS on its own can be fun, but stylesheets are getting larger, more complex, and harder to maintain. This is where a preprocessor can help. Sass lets you use features that don't exist in CSS yet like variables, nesting, mixins, inheritance and other nifty goodies that make writing CSS fun again.

Susy is a grid framework that uses SASS. While not considered a framework instead you build your own grid and they handle the math for you.

Ace
  • 969
  • 4
  • 10
0

Susy is a powerful set of Sass mixins for building grid-based layouts. Following are its key features:

  1. Susy does not uses grid system as you define your own grid rules and susy takes care of rest things. So you need not create a CSS file using classes (as we do while using frameworks like Bootstrap or foundation)
  2. Susy is not at all a framework.
  3. You can configure rules to customize build process.
Akshay Gundewar
  • 864
  • 11
  • 30