Skip to content

Commit

Permalink
Fix issue #5261, missing parenthesis in image() url() example. (#5283)
Browse files Browse the repository at this point in the history
Fix the 3 flawed cssxref macros at the end of the page.
  • Loading branch information
teoli2003 authored May 25, 2021
1 parent e3dd315 commit dd77a55
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions files/en-us/web/css/url()/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

/* As a parameter in another CSS function */
background-image: cross-fade(20% url(first.png), url(second.png));
mask-image: image(url(mask.png), skyblue, linear-gradient(rgba(0, 0, 0, 1.0), transparent);
mask-image: image(url(mask.png), skyblue, linear-gradient(rgba(0, 0, 0, 1.0), transparent));

/* as part of a non-shorthand multiple value */
content: url(star.svg) url(star.svg) url(star.svg) url(star.svg) url(star.svg);
Expand Down Expand Up @@ -207,7 +207,7 @@ <h2 id="See_also">See also</h2>
<ul>
<li>{{cssxref("&lt;gradient&gt;")}}</li>
<li>{{cssxref("element()")}}</li>
<li>{{cssxref("_image","image()")}}</li>
<li>{{cssxref("image-set","image-set()")}}</li>
<li>{{cssxref("cross-fade")}}</li>
<li>{{cssxref("image()")}}</li>
<li>{{cssxref("image-set()")}}</li>
<li>{{cssxref("cross-fade()")}}</li>
</ul>

0 comments on commit dd77a55

Please sign in to comment.