Design comparison
SolutionDesign
Solution retrospective
What are you most proud of, and what would you do differently next time?
using list items
What challenges did you encounter, and how did you overcome them?styling html list items
What specific areas of your project would you like help with?css grid
Community feedback
- @MahmoodHashemPosted 5 months ago
You've done an excellent job and the project looks good, but to enhance its appearance, consider adding
padding
to elements such as the recipe carddiv
and the preparation time section. You can also change the color of the list item markers using the ::marker pseudo element. Simply add acard
class to the first div, which is the container for the recipe, and a "preparation-time" class to the Preparation Time section, and apply the following CSS styles:.card{ background-color: white; padding: 20px; border-radius: 10px; } .preparation-time ul li::marker{ color: hsl(332, 51%, 32%); }
0
Please log in to post a comment
Log in with GitHubJoin 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