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

Submitted

Responsive Interactive rating component with Flexbox

P

@barka-dev

Desktop design screenshot for the Interactive rating component coding challenge

This is a solution for...

  • HTML
  • CSS
  • JS
1newbie
View challenge

Design comparison


SolutionDesign

Community feedback

@Mohamedkabba444

Posted

Great job on completing this project! Your coding skills and attention to detail are impressive.

One minor suggestion I have is to consider nesting the hover styles directly within the button CSS block. Instead of:

button { /* styles */ }

button:hover { /* hover styles */ }

You could do:

button { /* styles */ transition: opacity 0.2s ease-in-out;

&:hover { opacity: 0.8; /* other hover styles */ } }

This approach keeps related styles together, making maintenance easier.

Overall, your project looks fantastic! Keep up the excellent work!

Marked as helpful

0

Please log in to post a comment

Log in with GitHub
Discord logo

Join our Discord community

Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!

Join our Discord