Skip to content

Instantly share code, notes, and snippets.

@heimdallrj
Last active February 24, 2017 10:38
Show Gist options
  • Save heimdallrj/d9d31042ca8156b1d97f574998c1a20b to your computer and use it in GitHub Desktop.
Save heimdallrj/d9d31042ca8156b1d97f574998c1a20b to your computer and use it in GitHub Desktop.
// Incorrect:
#sidebar {
background-color: #fff;
background-image: (bg.png);
background-position: 0 0;
}
// Correct:
#sidebar {
background: #fff url(bg.png) repeat-x 0 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment