Skip to content

Commit a0477e2

Browse files
committed
[css-content-3] Typo fix
In attr(), <type-or-unit> is space-separated, instead of comma-separated, with <attr-name>.
1 parent 549b0e4 commit a0477e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

css-content-3/Overview.bs

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ Introduction</h2>
7575
/* Replace &lt;figure&gt; elements with the referenced document, or,
7676
* failing that, with either the contents of the alt attribute or the
7777
* contents of the element itself if there is no alt attribute */
78-
figure[alt] { content: attr(href, url), attr(alt); }
79-
figure:not([alt]) { content: attr(href, url), contents; }
78+
figure[alt] { content: attr(href url), attr(alt); }
79+
figure:not([alt]) { content: attr(href url), contents; }
8080
</pre>
8181
</div>
8282

0 commit comments

Comments
 (0)