Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

The Sass .sass file is visually different from .scss file, e.g. Example.scss - sassy css is the new syntax as of Sass 3

$color: red;

@mixin my-border($color) {
  border: 1px solid $color;
}

body {
  background: $color;
  @include my-border(green);
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #The #Sass #file #visually #sassy #css #syntax #Sass
ADD COMMENT
Topic
Name
7+8 =