Sass icon
Sass icon

Sass

Sass is a stylesheet language initially designed by Hampton Catlin and developed by Nathan Weizenbaum. After its initial versions, Nathan Weizenbaum and Chris Eppstein have continued to extend Sass with SassScript, a simple scripting language used in Sass files.

Cost / License

  • Free
  • Open Source

Platforms

  • Mac
  • Windows
  • Linux
  • Ruby
-
No reviews
27likes
0comments
0news articles

Features

Suggest and vote on features
No features, maybe you want to suggest one?

Sass News & Activities

Highlights All activities

Recent activities

No activities found.

Sass information

  • Developed by

    US flagHampton Catlin
  • Licensing

    Open Source and Free product.
  • Alternatives

    5 alternatives listed
  • Supported Languages

    • English

AlternativeTo Category

Development

Popular alternatives

View all

Top Sass apps (extensions / mods etc)

View all
Sass was added to AlternativeTo by elephantphone on and this page was last updated . Sass is sometimes referred to as SCSS
No comments or reviews, maybe you want to be first?
Post comment/review

Featured in Lists

Master List of all Apps and Software I use for both work and personal life.

List by Jimmy Briggs with 421 apps, updated

My favorite web development tools - Web languages - Nocode - Marketing - Code Editors - HTML/CSS Frameworks - CSS …

List by wallygator1 with 46 apps, updated

A list with 809 apps by AmileyaRyver without a description.

List by AmileyaRyver with 809 apps, updated

What is Sass?

Sass is a stylesheet language initially designed by Hampton Catlin and developed by Nathan Weizenbaum. After its initial versions, Nathan Weizenbaum and Chris Eppstein have continued to extend Sass with SassScript, a simple scripting language used in Sass files.Sass is a Cascading Style Sheets (CSS) metalanguage. It is a scripting language that is interpreted into CSS. SassScript is the scripting language itself. Sass consists of two syntaxes. The original syntax, called "the indented syntax" uses a syntax similar to Haml. It uses indentation to separate code blocks and newline characters to separate rules. The newer syntax, "SCSS" uses block formatting like that of CSS. It uses braces to denote code blocks and semicolons to separate lines within a block. The indented syntax and SCSS files are traditionally given the extensions.sass and.scss respectively.CSS3 consists of a series of selectors and pseudo-selectors that group rules that apply to them. Sass (in the larger context of both syntaxes) extends CSS by providing several mechanisms available in more traditional programming languages, particularly object-oriented languages, but that are not available to CSS3 itself. When SassScript is interpreted, it creates blocks of CSS rules for various selectors as defined by the Sass file. The Sass interpreter translates SassScript into CSS. Alternately, Sass can monitor the.sass or.scss file and translate it to an output.css file whenever the.sass or.scss file is saved. Sass is simply syntactic sugar for CSS.