@dustinsoosSubmitted almost 2 years ago
I found changing the innerHTML was a bit difficult to figure out, ended up having to google and figure out how I can do it. Let me know what you think!
I found changing the innerHTML was a bit difficult to figure out, ended up having to google and figure out how I can do it. Let me know what you think!
You've written a great solution. However, when viewing your solution on an iPad the rating buttons don't extend all the way to the right side of the container. One solution to this is to use flexbox. For example,
.ratings {
width: 100%;
display: flex;
align-items: center;
justify-content: space-evenly;
}