Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS CSS Basics (2014) Enhancing the Design With CSS Box Shadows

Box Shadows not working - I'm following the video and neither the box shadows or the inset shadows are working for me.

.wildlife {
  color: white;
  text-align: left;
  padding: 18% 24%;
  border-top: 10px solid #ffa949;
  margin: 105px 0 60px;
  background: #434a52 url('../img/bear.jpg') no-repeat center;
  background-size: cover;
  box-shadow: inset 20px 20px 5px rbga(0,0,0, 1);
}

2 Answers

I believe you mistyped rgba(0,0,0, 1) in your css. You put rbga(0,0,0, 1).

Hope this solve your problem

Shaun

of course, head slap. Stupid mistake. Thanks for pointing it out.