Nested rules
  • References/CSS/Sass/CSS Extensions

Nested Rules Sass allows CSS rules to be nested within one another. The inner rule then only applies within the outer rule’s selector. For example:

2025-01-10 15:47:30
alpha
  • References/CSS/Sass/Functions

alpha($color) Returns the alpha component (opacity) of a color. This is 1 unless otherwise specified. This

2025-01-10 15:47:30
Pseudo-Class - :last-of-type
  • References/CSS/CSS Selectors

Pattern: :last-of-type   Definition: The :last-of

2014-11-13 12:25:36
nth
  • References/CSS/Sass/Functions

nth($list, $n) Gets the nth item in a list. Note that unlike some languages, the first item

2025-01-10 15:47:30
:compact
  • References/CSS/Sass/Output Styles

:compact Compact style takes up less space than Nested or Expanded. It also draws the focus more to the selectors than to their

2025-01-10 15:47:30
selector_replace
  • References/CSS/Sass/Functions

selector_replace($selector, $original, $replacement) Replaces all instances of $original with $replacement

2025-01-10 15:47:30
change_color
  • References/CSS/Sass/Functions

change_color($color, [$red], [$green], [$blue], [$hue], [$saturation], [$lightness], [$alpha]) Changes one or more properties

2025-01-10 15:47:30
Type Selector: element
  • References/CSS/CSS Selectors

Pattern: element   Definition: The element selector matches every

2014-11-09 16:34:09
Pseudo-Class - :nth-last-child()
  • References/CSS/CSS Selectors

Pattern: :nth-last-child(Nth) The argument Nth is of the following format:

2014-11-13 07:45:01