Skip to content

Instantly share code, notes, and snippets.

@KatieK2
Created June 17, 2014 04:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KatieK2/9e421ea223a6ca31c595 to your computer and use it in GitHub Desktop.
Save KatieK2/9e421ea223a6ca31c595 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<p>
With Sass 3.3.3 (Maptastic Maple) and
Compass 0.12.3 (Alnilam), maps compile to errors:
</p>
<code> error demo/sass/screen.scss (Line 5: Invalid CSS after "$map: (key1": expected ")", was ": white, key2: ...")</code>
// ----
// Sass (v3.3.8)
// Compass (v1.0.0.alpha.19)
// ----
@import "compass";
body {
@include background(
image-url("fallback.png"),
radial-gradient(#E86EA4, white 900px)
);
}
body {
background: url('/images/fallback.png'), -moz-radial-gradient(#e86ea4, #ffffff 900px);
background: url('/images/fallback.png'), -webkit-radial-gradient(#e86ea4, #ffffff 900px);
background: url('/images/fallback.png'), radial-gradient(#e86ea4, #ffffff 900px);
}
<p>
With Sass 3.3.3 (Maptastic Maple) and
Compass 0.12.3 (Alnilam), maps compile to errors:
</p>
<code> error demo/sass/screen.scss (Line 5: Invalid CSS after "$map: (key1": expected ")", was ": white, key2: ...")</code>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment