From dd77a55993f6f91824e72c8bc7cdb4b4c28d5666 Mon Sep 17 00:00:00 2001 From: Jean-Yves Perrier Date: Tue, 25 May 2021 14:48:22 +0200 Subject: [PATCH] Fix issue #5261, missing parenthesis in image() url() example. (#5283) Fix the 3 flawed cssxref macros at the end of the page. --- files/en-us/web/css/url()/index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/files/en-us/web/css/url()/index.html b/files/en-us/web/css/url()/index.html index 36c4ad0f7472607..69d672cd344c18e 100644 --- a/files/en-us/web/css/url()/index.html +++ b/files/en-us/web/css/url()/index.html @@ -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); @@ -207,7 +207,7 @@

See also