Skip to content

Commit 54defcd

Browse files
Merge pull request #413 from hlb89/gh-pages
HTML tutorial 5 has an incorrect instruction re background images
2 parents ae18b79 + b191d3d commit 54defcd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

html/lesson5/tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,8 @@ You can also set different properties for your backgrounds, by defining them in
234234
First let's set two background images, the first positioned on the right and the second on the left.
235235

236236
```
237-
background: url('assets/images/background-right.jpg') right top no-repeat,
238-
url('assets/images/background-left.jpg') left no-repeat;
237+
background: url('background-right.jpg') right top no-repeat,
238+
url('background-left.jpg') left no-repeat;
239239
```
240240

241241
By default, a background image repeats itself to fill in the container. We don't want that, that's where the **no-repeat** property we specified comes into place.

0 commit comments

Comments
 (0)