Skip to content

Instantly share code, notes, and snippets.

@cimmanon
Last active August 29, 2015 14:25
Show Gist options
  • Save cimmanon/f64fdc1e948152bbd975 to your computer and use it in GitHub Desktop.
Save cimmanon/f64fdc1e948152bbd975 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="foo">foo</div>
<div class="bar">bar</div>
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
$breadcrumb-separator: "x";
.foo:after {
content: "#{$breadcrumb-separator}\00a0";
display: inline;
}
.bar:after {
content: $breadcrumb-separator + \00a0;
display: inline;
}
@charset "UTF-8";
.foo:after {
content: "x ";
display: inline;
}
.bar:after {
content: "x\\00a0";
display: inline;
}
<div class="foo">foo</div>
<div class="bar">bar</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment