Skip to content

Commit 3e0100c

Browse files
committed
[css-backgrounds] Address example inconsistencies noted in <http://lists.w3.org/Archives/Public/www-style/2014Feb/0277.html>
1 parent 100121f commit 3e0100c

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

css-backgrounds/Overview.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1910,8 +1910,8 @@ <h3 id=the-background><span class=secno>3.10. </span>Backgrounds Shorthand:
19101910
body {
19111911
background-color: red;
19121912
background-position: 0% 0%;
1913-
background-size: auto auto;
1914-
background-repeat: repeat repeat;
1913+
background-size: auto;
1914+
background-repeat: repeat;
19151915
background-clip: border-box;
19161916
background-origin: padding-box;
19171917
background-attachment: scroll;
@@ -1925,7 +1925,7 @@ <h3 id=the-background><span class=secno>3.10. </span>Backgrounds Shorthand:
19251925
background-color: gray;
19261926
background-position: 40% 50%;
19271927
background-size: 10em 10em;
1928-
background-repeat: round round;
1928+
background-repeat: round;
19291929
background-clip: border-box;
19301930
background-origin: border-box;
19311931
background-attachment: fixed;
@@ -1975,7 +1975,7 @@ <h3 id=the-background><span class=secno>3.10. </span>Backgrounds Shorthand:
19751975
<pre>
19761976
background-image: url(a.png), url(b.png), url(c.png);
19771977
background-position: top left, center, top left;
1978-
background-repeat: no-repeat, no-repeat no-repeat, repeat;
1978+
background-repeat: no-repeat, no-repeat, repeat;
19791979
background-clip: border-box, border-box, border-box;
19801980
background-origin: padding-box, padding-box, padding-box;
19811981
background-size: auto auto, 100% 100%, auto auto;

css-backgrounds/Overview.src.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1291,8 +1291,8 @@ <h3 id="the-background">Backgrounds Shorthand: the 'background' property</h3>
12911291
body {
12921292
background-color: red;
12931293
background-position: 0% 0%;
1294-
background-size: auto auto;
1295-
background-repeat: repeat repeat;
1294+
background-size: auto;
1295+
background-repeat: repeat;
12961296
background-clip: border-box;
12971297
background-origin: padding-box;
12981298
background-attachment: scroll;
@@ -1306,7 +1306,7 @@ <h3 id="the-background">Backgrounds Shorthand: the 'background' property</h3>
13061306
background-color: gray;
13071307
background-position: 40% 50%;
13081308
background-size: 10em 10em;
1309-
background-repeat: round round;
1309+
background-repeat: round;
13101310
background-clip: border-box;
13111311
background-origin: border-box;
13121312
background-attachment: fixed;
@@ -1356,7 +1356,7 @@ <h3 id="the-background">Backgrounds Shorthand: the 'background' property</h3>
13561356
<pre>
13571357
background-image: url(a.png), url(b.png), url(c.png);
13581358
background-position: top left, center, top left;
1359-
background-repeat: no-repeat, no-repeat no-repeat, repeat;
1359+
background-repeat: no-repeat, no-repeat, repeat;
13601360
background-clip: border-box, border-box, border-box;
13611361
background-origin: padding-box, padding-box, padding-box;
13621362
background-size: auto auto, 100% 100%, auto auto;

0 commit comments

Comments
 (0)