Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • @dustinsoos

    Submitted

    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!

    @acedilloluis

    Posted

    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;
    }
    
    0