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 trialdv9
11,984 PointsI dont understand the question
progress bar
/* Complete the challenge by writing CSS below */
.progbar {
display: block;
width: 50%;
height: 100%;
border-radius: inherit;
background-color: #5ece7f;
}
.progbar {
display: block;
width: 24px;
height: 24px;
border-radius: 50%;
position: absolute;
left: 49%;
top: -9px;
background-color: #7dd898;
}
.progbar {
height: 6px;
border-radius: 3px;
background: #d6d7d9;
position: relative;
margin-bottom: 3.875em;
}
<!DOCTYPE html>
<html>
<head>
<title>Selectors</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="page.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="progbar"></div>
<a href="http://teamtreehouse.com">Check out the URL: </a>
</body>
</html>
dv9
11,984 PointsChallenge Task 1 of 4
Let's use pseudo-elements to create a progress bar from a single element. First, in the top .progbar selector, add the pseudo-element that will insert content after the element.
4 Answers
Andi Wilkinson
26,822 Pointsok, so we need to turn the top selector of progbar into a psuedo classΒ just change
.progbar {
display: block; width: 50%; height: 100%; border-radius: inherit; background-color: #5ece7f; }
to
.progbar:after {
display: block; width: 50%; height: 100%; border-radius: inherit; background-color: #5ece7f; }
Andi Wilkinson
26,822 Pointswhoops, hang on let me edit that
dv9
11,984 PointsI got it! thanks Andi
dv9
11,984 PointsChallenge Task 1 of 4
Let's use pseudo-elements to create a progress bar from a single element. First, in the top .progbar selector, add the pseudo-element that will insert content after the element.
Andi Wilkinson
26,822 Pointsbrilliant, sorry about my markdown, my markup is far better :D
ABOLFAZL BAYAT
4,767 Points.progbar::after{ content:"";
display: block; width: 50%; height: 100%; border-radius: inherit; background-color: #5ece7f; }
Andi Wilkinson
26,822 PointsAndi Wilkinson
26,822 PointsWhat is the question?