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 Selectors Going Further with Attribute Selectors and Pseudo-Classes :first-child and :last-child Challenge

stuck in exercise and i think my answer is correct

on firstchild-and-lastchild-challenge i got stuck

the question is: Create a pseudo-class selector that targets the first-child li in .main-nav. Remove all border styles by setting border to none. Then, set the top-left and bottom-left border-radius to 5px. Watch this related video for a review on border-radius.

my answer: .main-nav>li:first-child{ border: none; border-radius: 5px 0 0 5px; }

and it says " Bummer! You do not need a child combinator in the selector."

style.css
/* Complete the challenge by writing CSS below */
.main-nav>li:first-child{
  border: none;
  border-radius: 5px 0 0 5px;

}
index.html
<!DOCTYPE html>
<html>
<head>
    <title>Selectors</title>
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link href='http://fonts.googleapis.com/css?family=Nunito:400,300' rel='stylesheet' type='text/css'>
  <link rel="stylesheet" href="page.css">
  <link rel="stylesheet" href="style.css">
</head>
<body>
    <header>
      <h1>My Site!</h1>
      <ul class="main-nav">
        <li><a href="#">Home</a></li>
        <li><a href="#">About</a></li>
        <li><a href="#">Work</a></li>
        <li><a href="#">Contact</a></li>
      </ul>
    </header>
    <div>
      <p>Tattooed viral put a bird on it skateboard. Drinking vinegar locavore squid farm-to-table, dreamcatcher tattooed kitsch scenester. Tousled wolf squid Wes Anderson PBR, Williamsburg banh mi dreamcatcher stumptown ethnic sartorial mlkshk. Hella mixtape bespoke mustache Bushwick. Post-ironic hashtag jean shorts, Truffaut organic roof party pop-up wayfarers selvage narwhal. Mixtape roof party twee, post-ironic bespoke hella artisan meggings Carles brunch pop-up Tonx street art normcore. DIY paleo slow-carb occupy tofu fingerstache.</p>
    </div>
</body>
</html>
Tim Knight
Tim Knight
28,888 Points

David,

Your initial answer was close too, you just didn't need the adjacent child selector in there. So the > symbol could have just been removed.

Tim Knight thankyou for the help but the correct answer to pass this question is without any main-div

Tim Knight
Tim Knight
28,888 Points

David,

Actually, both are valid (in production and in the quiz). I'm just glad you got it working for yourself.

8 Answers

i got the correct answer

li:first-child{ border: none; border-radius:5px 0 0 5px; }

Clint Dehner
Clint Dehner
8,808 Points

Make sure you give credit to the person that helped you so it goes to their points in the community :)

Brendon Brooks
Brendon Brooks
8,802 Points

.main-nav li:first-child { border: none; border-radius: 5px 0 0 5px; }

Petr Pavelka
Petr Pavelka
4,968 Points
// CSS syntax
.main-nav li:first-child {
    border: none;
    border-radius: 5px 0 0 5px;
}

//LESS syntax
.main-nav {
  li {
    &:first-child {
          border: none;
          border-radius: 5px 0 0 5px;
    }
  }
}
Andreea Focariu
Andreea Focariu
2,761 Points

.main-nav li:first-child { border: none; border-radius: 5px 0 0 5px; }

Vipin Singh
Vipin Singh
15,268 Points

you can try this

.main-nav li:first-child{
  border: none;
  border-top-left-radius: 5px ;
  border-bottom-left-radius:5px;
}

.main-nav li:first-child { border: none; border-radius: 5px 0 0 5px;

Maimoona Javaid
Maimoona Javaid
12,568 Points

The answer: .main-nav li:first-child { border: none; border-radius: 5px 0 0 5px; }