To the code: ``` #app{ background-image: url('../img/background.jpg'); } ``` The image background is not found, to work: ``` #app{ background-image: url('img/background.jpg'); } ``` To solved the problem remove _**../**_
To the code:
The image background is not found, to work:
To solved the problem remove ../