I thought there has a bug :I did the same as requested, but I was unable to pass the runtime

I did the same as requested, but I was unable to pass the runtime.

Applied Visual Design - Create Texture by Adding a Subtle Pattern as a Background Image

Applied Visual Design - Create Texture by Adding a Subtle Pattern as a Background Image
One way to add texture and interest to a background and have it stand out more is to add a subtle pattern. The key is balance, as you don’t want the background to stand out too much, and take away from the foreground. The background property supports the url() function in order to link to an image of the chosen texture or pattern. The link address is wrapped in quotes inside the parentheses.

Using the url of https://i.imgur.com/MJAkxbh.png, set the background of the whole page with the body selector.

Your body element should have a background property set to a url() with the given link.

<style>
  body {
    background:url(https://i.imgur.com/MJAkxbh.png);
  }
</style>```

but the result;

// running test
Your body element should have a background property set to a url() with the given link.
// tests completed

Your url needs to be wrapped in quotes.

2 Likes