selector_append($selectors...)
Return a new selector with all selectors in $selectors
appended one another as though they had been nested in the stylesheet as $selector1 { &$selector2 { ... } }
.
selector_append($selectors...)
Return a new selector with all selectors in $selectors
appended one another as though they had been nested in the stylesheet as $selector1 { &$selector2 { ... } }
.
Examples:
selector-append(".foo", ".bar", ".baz") => .foo.bar.baz
selector-append(".a .foo", ".b .bar") => "a .foo.b .bar"
selector-append(".foo", "-suffix") => ".foo-suffix"
Returns A list of lists of strings representing the result of appending $selectors
. This is in the same format as a selector returned by &
.
Parameters:
Returns:
Raises:
Designed by : w10schools
service@w10schools.com
Please login to continue.