S
S
Sergey Mamenko2017-03-18 16:03:35
Sass
Sergey Mamenko, 2017-03-18 16:03:35

What is the difference between .scss and .sass?

There is a bones theme for WP development, but it uses .scss files for styling, is it possible to work with them in gulp-sass as with normal .sass files?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
S
Sergey delphinpro, 2017-03-18
@bobongida97

is it possible to work with them in gulp-sass as with normal .sass files?

Ordinary ones are just .scss files. And .sass is a deprecated syntax for perverts.

M
Max Medar, 2017-03-18
@MedVedar

There are two syntaxes available for Sass. The first, known as SCSS (Sassy CSS) and used throughout this reference, is an extension of the syntax of CSS. This means that every valid CSS stylesheet is a valid SCSS file with the same meaning. In addition, SCSS understands most CSS hacks and vendor-specific syntax, such as IE's old filter syntax. This syntax is enhanced with the Sass features described below. Files using this syntax have the .scss extension.
The second and older syntax, known as the indented syntax (or sometimes just “Sass”), provides a more concise way of writing CSS. It uses indentation rather than brackets to indicate nesting of selectors, and newlines rather than semicolons to separate properties. Some people find this to be easier to read and quicker to write than SCSS. The indented syntax has all the same features, although some of them have slightly different syntax; this is described in the indented syntax reference. Files using this syntax have the .sass extension.

sass-lang.com/documentation/file.SASS_REFERENCE.ht...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question