Menu
Coddy logo textTech

Blurred Hero Image

Part of the CSS Mastery section of Coddy's HTML journey — lesson 43 of 43.

challenge icon

Challenge

Easy

There is an image of New York City in the .gallery section.
Your task is to apply a blur filter with a value of 2px to it using CSS.

Try it yourself

<html>
<head>
  <title>Blurred Hero Image</title>
  <style> 
    /* Add your CSS styles here: */
    img {
    width: 100%;
    }
  </style>
</head>
<body>
    <div class="gallery">
        <img src="https://upload.wikimedia.org/wikipedia/commons/0/05/View_of_Empire_State_Building_from_Rockefeller_Center_New_York_City_dllu.jpg
">
    </div>
</body>
</html>

All lessons in CSS Mastery