Skip to content

Instantly share code, notes, and snippets.

@lucasan
Created March 25, 2014 22:02
Show Gist options
  • Save lucasan/9772407 to your computer and use it in GitHub Desktop.
Save lucasan/9772407 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<html>
<head>
<title>A title</title>
</head>
<body>
<div class="content">
<h1>A heading</h1>
<p>A text</p>
</div>
</body>
</html>
// ----
// Sass (v3.3.4)
// Compass (v1.0.0.alpha.18)
// ----
@function set-background($img: false, $color: #F4F4F4)
{
@if $img != false {
@return #{$color} url(#{$img}) no-repeat left top;
}
@else {
@return #{$color};
}
}
.container {
background: set-background("photo.png", #000);
}
.container {
background: black url(photo.png) no-repeat left top;
}
<html>
<head>
<title>A title</title>
</head>
<body>
<div class="content">
<h1>A heading</h1>
<p>A text</p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment