Display property of grid, am I missing something?

Tell us what’s happening:
So I am supposed to create a display property of grid in the container class. What am I missing here? Apparently not correct

  **Your code so far**

<style>
.d1{background:LightSkyBlue;}
.d2{background:LightSalmon;}
.d3{background:PaleTurquoise;}
.d4{background:LightPink;}
.d5{background:PaleGreen;}

.container {
  font-size: 40px;
  width: 100%;
  background: LightGray;
  /* Only change code below this line */
  display: grid;
  
  /* Only change code above this line */
}
</style>

<div class="container">
<div class="d1">1</div>
<div class="d2">2</div>
<div class="d3">3</div>
<div class="d4">4</div>
<div class="d5">5</div>
</div>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36

Challenge: Create Your First CSS Grid

Link to the challenge:

Your code passes for me. Sometimes things glitch. Reboot, clear the browser cache, and/or try a different browser. Certain browser plugins and dark mode can affect some tests. If all else fails, just back out and move onto the next challenge.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.