Just wanna keep getting better at it even if slowly.
Darkpoet
@Ojay16All comments
- @DarkCityTrenoSubmitted 5 months agoWhat specific areas of your project would you like help with?@Ojay16Posted 5 months ago
Hi there!
Congrats on completing the challenge! ā
Your project looks amazing!
I'd like to suggest a fix for a little problem u have :
U could try using the CSS
letter-spacing:;
property to add spacing between the letters of the "Perfume" paragraph to give the required outcome.Here's a highly efficient approach:
š Apply this CSS to your paragraph with the
.product-type
class:.product-type{ letter-spacing: 5px; }
The
letter-spacing: 5px;
property gives 5px of spacing between each letter, Thus giving you the desired outcome.Hope you find this helpful
Happy coding!
Marked as helpful1 - @BlizzmasterSubmitted 5 months ago@Ojay16Posted 5 months ago
Hello there!
Congrats on completing the challenge! ā
Your project is looking fantastic!
I'd like to suggest a way to make it even better:
U could try using the
flex
property to make the content in your nutrition table align correctly to give the required outcome.Here's a highly efficient approach:
š Apply this CSS to the nutrition content of the table (You could try giving each gram content the same class to easily target them ):
.nutrition-list .gram { padding-right: 20px; color: hsl(14, 45%, 36%); font-weight: 700; } .nutrition-list li { flex: 1; text-align: left; }
The
flex: 1;
property allows the list items to grow and shrink as needed, which allows you to easily apply thealign-items: left property
, and thepadding-right
property on the.gram
Adjust the padding to align more to the left.Hope you find this helpful
Happy coding!
Marked as helpful0 - @Faisalbaig1998Submitted 5 months ago
- @sushilbhattaSubmitted 6 months ago
- @BlakkdolphinSubmitted 6 months agoWhat are you most proud of, and what would you do differently next time?
i'll do javascript next time
What challenges did you encounter, and how did you overcome them?i encountered adjusting the width of the card but i managed to scale through
What specific areas of your project would you like help with?i would like help on the background,it seems to be somehow attached to the card,if i try moving the card container the blue backgriund tends to follow
@Ojay16Posted 5 months agoI cannot access your code to see what was written, so my only feedback is that you need to improve your design. You seem to have an idea of how it should be done, but it is a bit off. Try checking out the "style-guide".md file to see the appropriate colours and fonts to use. Concerning the problem you stated, I would love to advise once I can see the code you have written
0