2018-09-01 22:35:20 +02:00
|
|
|
|
---
|
|
|
|
|
title: Special Functions
|
2018-11-30 00:43:18 +01:00
|
|
|
|
table_of_contents: true
|
2019-03-05 01:24:31 +01:00
|
|
|
|
introduction: >
|
|
|
|
|
CSS defines many functions, and most of them work just fine with Sass’s normal
|
|
|
|
|
function syntax. They’re parsed as function calls, resolved to [plain CSS
|
2019-09-05 23:47:14 +02:00
|
|
|
|
functions](../at-rules/function#plain-css-functions), and compiled as-is to
|
|
|
|
|
CSS. There are a few exceptions, though, which have special syntax that can’t
|
|
|
|
|
just be parsed as a [SassScript expression](structure#expressions). All
|
|
|
|
|
special function calls return [unquoted strings](../values/strings#unquoted).
|
2018-09-01 22:35:20 +02:00
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
## `url()`
|
|
|
|
|
|
|
|
|
|
The [`url()` function][] is commonly used in CSS, but its syntax is different
|
|
|
|
|
than other functions: it can take either a quoted *or* unquoted URL. Because an
|
|
|
|
|
unquoted URL isn't a valid SassScript expression, Sass needs special logic to
|
|
|
|
|
parse it.
|
|
|
|
|
|
|
|
|
|
[`url()` function]: https://developer.mozilla.org/en-US/docs/Web/CSS/url
|
|
|
|
|
|
|
|
|
|
If the `url()`'s argument is a valid unquoted URL, Sass parses it as-is,
|
|
|
|
|
although [interpolation][] may also be used to inject SassScript values. If it's
|
|
|
|
|
not a valid unquoted URL—for example, if it contains [variables][] or [function
|
|
|
|
|
calls][]—it's parsed as a normal [plain CSS function call][].
|
|
|
|
|
|
|
|
|
|
[interpolation]: ../interpolation
|
|
|
|
|
[variables]: ../variables
|
|
|
|
|
[function calls]: ../at-rules/function
|
2019-09-05 23:47:14 +02:00
|
|
|
|
[plain CSS function call]: ../at-rules/function#plain-css-functions
|
2018-09-01 22:35:20 +02:00
|
|
|
|
|
|
|
|
|
<% example do %>
|
2018-10-23 22:42:40 +02:00
|
|
|
|
$roboto-font-path: "../fonts/roboto";
|
2018-09-01 22:35:20 +02:00
|
|
|
|
|
2018-10-23 22:42:40 +02:00
|
|
|
|
@font-face {
|
|
|
|
|
// This is parsed as a normal function call that takes a quoted string.
|
|
|
|
|
src: url("#{$roboto-font-path}/Roboto-Thin.woff2") format("woff2");
|
2018-09-01 22:35:20 +02:00
|
|
|
|
|
2018-10-23 22:42:40 +02:00
|
|
|
|
font-family: "Roboto";
|
|
|
|
|
font-weight: 100;
|
|
|
|
|
}
|
2018-09-01 22:35:20 +02:00
|
|
|
|
|
2018-10-23 22:42:40 +02:00
|
|
|
|
@font-face {
|
|
|
|
|
// This is parsed as a normal function call that takes an arithmetic
|
|
|
|
|
// expression.
|
|
|
|
|
src: url($roboto-font-path + "/Roboto-Light.woff2") format("woff2");
|
2018-09-01 22:35:20 +02:00
|
|
|
|
|
2018-10-23 22:42:40 +02:00
|
|
|
|
font-family: "Roboto";
|
|
|
|
|
font-weight: 300;
|
|
|
|
|
}
|
2018-09-01 22:35:20 +02:00
|
|
|
|
|
2018-10-23 22:42:40 +02:00
|
|
|
|
@font-face {
|
|
|
|
|
// This is parsed as an interpolated special function.
|
|
|
|
|
src: url(#{$roboto-font-path}/Roboto-Regular.woff2) format("woff2");
|
2018-09-01 22:35:20 +02:00
|
|
|
|
|
2018-10-23 22:42:40 +02:00
|
|
|
|
font-family: "Roboto";
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
}
|
|
|
|
|
===
|
|
|
|
|
$roboto-font-path: "../fonts/roboto"
|
2018-09-01 22:35:20 +02:00
|
|
|
|
|
2018-10-23 22:42:40 +02:00
|
|
|
|
@font-face
|
|
|
|
|
// This is parsed as a normal function call that takes a quoted string.
|
|
|
|
|
src: url("#{$roboto-font-path}/Roboto-Thin.woff2") format("woff2")
|
2018-09-01 22:35:20 +02:00
|
|
|
|
|
2018-10-23 22:42:40 +02:00
|
|
|
|
font-family: "Roboto"
|
|
|
|
|
font-weight: 100
|
2018-09-01 22:35:20 +02:00
|
|
|
|
|
|
|
|
|
|
2018-10-23 22:42:40 +02:00
|
|
|
|
@font-face
|
|
|
|
|
// This is parsed as a normal function call that takes an arithmetic
|
|
|
|
|
// expression.
|
|
|
|
|
src: url($roboto-font-path + "/Roboto-Light.woff2") format("woff2")
|
2018-09-01 22:35:20 +02:00
|
|
|
|
|
2018-10-23 22:42:40 +02:00
|
|
|
|
font-family: "Roboto"
|
|
|
|
|
font-weight: 300
|
2018-09-01 22:35:20 +02:00
|
|
|
|
|
|
|
|
|
|
2018-10-23 22:42:40 +02:00
|
|
|
|
@font-face
|
|
|
|
|
// This is parsed as an interpolated special function.
|
|
|
|
|
src: url(#{$roboto-font-path}/Roboto-Regular.woff2) format("woff2")
|
2018-09-01 22:35:20 +02:00
|
|
|
|
|
2018-10-23 22:42:40 +02:00
|
|
|
|
font-family: "Roboto"
|
|
|
|
|
font-weight: 400
|
2018-09-01 22:35:20 +02:00
|
|
|
|
<% end %>
|
|
|
|
|
|
2021-09-14 01:16:42 +02:00
|
|
|
|
## `element()`, `progid:...()`, and `expression()`
|
2018-09-01 22:35:20 +02:00
|
|
|
|
|
2021-09-14 01:16:42 +02:00
|
|
|
|
<% impl_status dart: "<1.40.0", libsass: false, ruby: false, feature: "calc()" do %>
|
|
|
|
|
LibSass, Ruby Sass, and versions of Dart Sass prior to 1.40.0 parse `calc()`
|
|
|
|
|
as special syntactic function like `element()`.
|
|
|
|
|
|
|
|
|
|
Dart Sass versions 1.40.0 and later parse `calc()` as a [calculation].
|
|
|
|
|
|
|
|
|
|
[calculation]: ../values/calculations
|
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
<% impl_status dart: ">=1.31.0 <1.40.0", libsass: false, ruby: false, feature: "clamp()" do %>
|
|
|
|
|
LibSass, Ruby Sass, and versions of Dart Sass prior to 1.31.0 parse `clamp()`
|
|
|
|
|
as a [plain CSS function] rather than supporting special syntax within it.
|
2020-12-30 02:02:30 +01:00
|
|
|
|
|
|
|
|
|
[plain CSS function]: ../at-rules/function#plain-css-functions
|
2021-09-14 01:16:42 +02:00
|
|
|
|
|
|
|
|
|
Dart Sass versions between 1.31.0 and 1.40.0 parse `clamp()` as special
|
|
|
|
|
syntactic function like `element()`.
|
|
|
|
|
|
|
|
|
|
Dart Sass versions 1.40.0 and later parse `clamp()` as a [calculation].
|
|
|
|
|
|
|
|
|
|
[calculation]: ../values/calculations
|
2020-12-30 02:02:30 +01:00
|
|
|
|
<% end %>
|
|
|
|
|
|
2021-09-14 01:16:42 +02:00
|
|
|
|
The [`element()`] function is defined in the CSS spec, and because its IDs could
|
|
|
|
|
be parsed as colors, they need special parsing.
|
2018-09-01 22:35:20 +02:00
|
|
|
|
|
|
|
|
|
[`element()`]: https://developer.mozilla.org/en-US/docs/Web/CSS/element
|
|
|
|
|
|
|
|
|
|
[`expression()`][] and functions beginning with [`progid:`][] are legacy
|
|
|
|
|
Internet Explorer features that use non-standard syntax. Although they're no
|
|
|
|
|
longer supported by recent browsers, Sass continues to parse them for backwards
|
|
|
|
|
compatibility.
|
|
|
|
|
|
|
|
|
|
[`expression()`]: https://blogs.msdn.microsoft.com/ie/2008/10/16/ending-expressions/
|
|
|
|
|
[`progid:`]: https://blogs.msdn.microsoft.com/ie/2009/02/19/the-css-corner-using-filters-in-ie8/
|
|
|
|
|
|
|
|
|
|
Sass allows *any text* in these function calls, including nested parentheses.
|
|
|
|
|
Nothing is interpreted as a SassScript expression, with the exception that
|
|
|
|
|
[interpolation][] can be used to inject dynamic values.
|
|
|
|
|
|
|
|
|
|
<% example do %>
|
2021-09-14 01:16:42 +02:00
|
|
|
|
$logo-element: logo-bg;
|
2021-05-21 03:09:28 +02:00
|
|
|
|
|
2018-10-23 22:42:40 +02:00
|
|
|
|
.logo {
|
2021-09-14 01:16:42 +02:00
|
|
|
|
background: element(##{$logo-element});
|
2018-10-23 22:42:40 +02:00
|
|
|
|
}
|
|
|
|
|
===
|
2021-09-14 01:16:42 +02:00
|
|
|
|
$logo-element: logo-bg
|
2021-05-21 03:09:28 +02:00
|
|
|
|
|
2018-10-23 22:42:40 +02:00
|
|
|
|
.logo
|
2021-09-14 01:16:42 +02:00
|
|
|
|
background: element(##{$logo-element})
|
2021-05-21 03:09:28 +02:00
|
|
|
|
===
|
|
|
|
|
.logo {
|
2021-09-14 01:16:42 +02:00
|
|
|
|
background: element(#logo-bg);
|
2018-10-23 22:42:40 +02:00
|
|
|
|
}
|
2018-09-01 22:35:20 +02:00
|
|
|
|
<% end %>
|