Skip to content

Instantly share code, notes, and snippets.

@blackfalcon
Last active August 29, 2015 13:57
Show Gist options
  • Save blackfalcon/9612570 to your computer and use it in GitHub Desktop.
Save blackfalcon/9612570 to your computer and use it in GitHub Desktop.
Simple SVG example
.block {
background: url(http://upload.wikimedia.org/wikipedia/commons/b/b0/NewTux.svg) no-repeat 50% 0;
background-size: 90%;
width: 500px;
height: 500px;
background-color: orange; }
<div class="block"></div>
// ----
// libsass (v0.8.6)
// ----
$image: "http://upload.wikimedia.org/wikipedia/commons/b/b0/NewTux.svg";
.block {
background: url(#{$image}) no-repeat 50% 0;
background-size: 90%;
width: 500px;
height: 500px;
background-color: orange;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment