Last active
February 24, 2017 10:38
-
-
Save heimdallrj/d9d31042ca8156b1d97f574998c1a20b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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