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 trialJohn Moore
3,223 PointsNext, create a new pseudo-class selector that targets the last-child li in .main-nav. Let's give it a top-right and bott
I am confused for sure
/* Complete the challenge by writing CSS below */
.main-nav li:first-child { border: none; border-top-left-radius: 5px; border-bottom-left-radius: 5px; }
}
.main-nav li:last-child { border-top-right-radius: 5px; border-bottom-right-radius: 5px; }
<!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>
4 Answers
Stephen Van Delinder
21,457 PointsIt might be the blank line in your code or the platform doesn't like the formatting. I got this to pass.
.main-nav li:first-child {
border: none;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
.main-nav li:last-child {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
Let me know if that still does not work. Good Luck, Stephen
MUZ1407800 Doubt Milazi
11,813 Points.main-nav li:last-child { border-radius: 0 5px 5px 0; }
it passed for me.
John Moore
3,223 Pointsup and running, tks for help
Angel Canton
4,009 PointsThis way works for me :) by shitcht it .main-nav li:last-child { border-radius: 0 5px 5px 0; }
.main-nav li:first-child { border: none; border-radius: 5px 0 0 5px;
channonhall
12,247 Pointschannonhall
12,247 Pointsthanks man that helped :)
Peter B. Sims
Courses Plus Student 2,896 PointsPeter B. Sims
Courses Plus Student 2,896 PointsTHANK YOU!
Gertrude Dawson
5,371 PointsGertrude Dawson
5,371 PointsI had written the same code exactly and it wouldn't work for me until I cut and pasted your code. In several other code challenges my code was correct but it wouldn't run without added spaces.