Before this, I avoided using grid like the plague, and this was pretty hard for me. Watched a video on grid and was able to do it, but the scales are probably all over the place and the code is not neat at all. Anyways, it was enjoyable, and i will definitely use grid more often.
Latest solutions
Recipe page using Flexbox media querry
Submitted 12 months ago-
In the CSS code, at
.instructions
, how can I improove that code and make the display grid to make the text lined up in the right column -
How can I improve the code for the
.card
to make the image fill the space in the mobile view. I've tried add an exception but somehow it is not working.card:not(img)
-
Blog preview card using Flexbox
Submitted 12 months agoI would like to know if there is any more efficient way to give different properties to the texts
This a text
in a div `` than using in CSS.content .paragraph{ color: red; }
Latest comments
- @TheTrueScoutWhat challenges did you encounter, and how did you overcome them?@alstrow
It looks amazing!! Good job! 🎉
- @Fbeye04What are you most proud of, and what would you do differently next time?
The proudest thing is that I've gotten better at writing media queries including getting used to starting a mobile first workflow and another thing is that this is the first time I've used SASS instead of CSS.
What challenges did you encounter, and how did you overcome them?The most difficult challenge I felt was the migration from CSS to SASS because it took time to learn it, besides that the styling of cards that have a special color at the top of the card also provides its own challenges for me.
What specific areas of your project would you like help with?all area of html and css
@alstrowLooks very nice, good job! 😊
- @DORMODOWhat specific areas of your project would you like help with?
Could you take a look and give me your opinion?
@alstrowIt looks great, congrats!
You forgot the icon in the button and maybe a little
letter spacing
in the.product__type
. Also, that sould be a simple paragraph, not really the main title :) - @AlperenGrmz@alstrow
Congratulations for completing the challenge, it looks very good!
A little advice, you could add lateral padding in the
body
, so that the main does not touch the edge, or add a max-width on the.main
of 40-50 rem.Keep going! ^^
- @ahmedraza032@alstrow
@ahmedraza032 Hey, congrats on completing the challenge, looks good! however, here are some tips that I hope you find useful:
- Those buttons should be links that lead the user to the related pages. you can achieve this using the a tag:
<a href="#">LINK</a>
- In the case of
.link:hover
, you could put the 2 properties inside the single brace
Happy coding! ^^
Marked as helpful - Those buttons should be links that lead the user to the related pages. you can achieve this using the a tag:
- @ajay-8192@alstrow
Congrats on completing the challenge, looks great!
A small tip I have would be to add
padding
to thebody
element. This ensures that the center element does not touch the edges on smaller screens.Happy coding!! :)