September 2017
Intermediate to advanced
450 pages
11h 24m
English
There are two main flavors of Sass file extensions used in web applications today: .sass and .scss. While these formats have a different language syntax, they both have identical features and capabilities, so the choice largely comes down to the developer's personal preferences.
.sass files are a whitespace-sensitive version of Sass that omits the usual parenthetical nesting common to CSS. It is favored largely by developers familiar with whitespace-sensitive languages and tends to have a very clean, highly readable appearance:
@import reset$font-stack: Helvetica, sans-serif$primary-color: #333=text-style($color: $primary-color) font-family: $font-stack color: $color.btn-blue +text-color(#0000B2)section margin: 0 padding: 0 ...Read now
Unlock full access