selector_append
  • References/CSS/Sass/Functions

selector_append($selectors...) Return a new selector with all selectors in $selectors appended one another as

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

unquote($string) Removes quotes from a string. If the string is already unquoted, this will return it unmodified.

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

call($name, $args...) Dynamically calls a function. This can call user-defined functions, built-in functions, or plain CSS

2025-01-10 15:47:30
@at-root
  • References/CSS/Sass/@-Rules and Directives

@at-root The @at-root directive causes one or more rules to be emitted at the root of the document, rather than being

2025-01-10 15:47:30
@each
  • References/CSS/Sass/@-Rules and Directives

@each The @each directive usually has the form @each $var in <list or map>. $var

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

if($condition, $if-true, $if-false) Returns one of two values, depending on whether or not $condition is true

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

transparentize($color, $amount) Also known as: fade_out Makes

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

percentage($number) Converts a unitless number to a percentage.

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

lighten($color, $amount) Makes a color lighter. Takes a color and a number between 0% and 100%

2025-01-10 15:47:30
General Sibling Selector: element1 ~ element2
  • References/CSS/CSS Selectors

Pattern: element1 ~ element2   Definition: The element1 ~ element2 selector

2014-11-10 04:41:25