-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add task solution #5017
base: master
Are you sure you want to change the base?
add task solution #5017
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,26 @@ | ||
/* add styles here */ | ||
|
||
body, html, section { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
.stars { | ||
display: flex; | ||
} | ||
|
||
.stars__star { | ||
width: 20px; | ||
height: 20px; | ||
background-image: url('./images/star.svg'); | ||
background-size: cover; | ||
margin-right: 5px; | ||
} | ||
|
||
.stars--0 .stars__star:nth-child(-n+0), | ||
.stars--1 .stars__star:nth-child(-n+1), | ||
.stars--2 .stars__star:nth-child(-n+2), | ||
.stars--3 .stars__star:nth-child(-n+3), | ||
.stars--4 .stars__star:nth-child(-n+4), | ||
.stars--5 .stars__star:nth-child(-n+5) { | ||
background-image: url('./images/star-active.svg'); | ||
Comment on lines
+19
to
+24
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The
Comment on lines
+19
to
+24
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is a logical error in the ':nth-child' selectors. The '-n+0' selector in '.stars--0 .stars__star:nth-child(-n+0)' will not select any elements, as it effectively means 'select none'. Similarly, the other selectors should be adjusted to correctly select the intended number of active stars. For example, '.stars--1 .stars__star:nth-child(-n+1)' should be '.stars--1 .stars__star:nth-child(-n+2)' to select the first star, and so on. |
||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
:nth-child
selectors are incorrectly configured. For example,.stars--0 .stars__star:nth-child(-n+0)
will not select any elements because-n+0
results in no valid index. Similarly,.stars--1 .stars__star:nth-child(-n+1)
will only select the first child. Consider adjusting these selectors to correctly reflect the intended number of active stars. For instance,.stars--1 .stars__star:nth-child(-n+1)
should be.stars--1 .stars__star:nth-child(-n+2)
to select the first two stars.