Latest solutions
four-card-feature-section-master
#pure-cssSubmitted about 1 month agoI need help learning grid. I wasnt sure to align my first and third card.
.card { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; background: white; border-radius: 10px; box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); padding: 20px; width: 250px; min-height: 200px; border-top: 4px solid transparent; img { align-self: self-end; } } .card:nth-child(1) { grid-column: 2 / 3; grid-row: 1; align-self: center; } .card:nth-child(2) { grid-column: 1; grid-row: 2; } .card:nth-child(3) { grid-column: 2; grid-row: 2; }
Product Review
#reactSubmitted 9 months agoLearning how to deploy different applications to free sources would be nice,
Responsive Recipe page
Submitted 11 months agoYes, I am not sure how to properly align the order list items with the heading div. I am thinking removing either margin or padding but was not able to figure that out,.
Responsive Blog-preview-card
Submitted 12 months agoI would more help learning figma. Maybe a youtube link,
Responsive-QR-Code
Submitted 12 months agoMy understanding of flex will help with deciding how to align my content.
Latest comments
- P@himatthewwSubmitted about 2 months ago@tflinchPosted 19 days ago
Great work! Consider adopting some modern css techniques like
@layer
to better manage CSS specificity and modularity. Also consider using nth-child(n) to position grid items individually for more precise layout control..card:nth-child(1) { grid-column: 2 / 3; grid-row: 1/2; }
0 - @tflinchSubmitted about 1 month agoWhat are you most proud of, and what would you do differently next time?
I am proud i was able to closely mirror the challenge
What challenges did you encounter, and how did you overcome them?Biggest challenge was learning grid. I went to my trusty cheat sheet to learn how to align child elements.
What specific areas of your project would you like help with?I need help learning grid. I wasnt sure to align my first and third card.
.card { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; background: white; border-radius: 10px; box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); padding: 20px; width: 250px; min-height: 200px; border-top: 4px solid transparent; img { align-self: self-end; } } .card:nth-child(1) { grid-column: 2 / 3; grid-row: 1; align-self: center; } .card:nth-child(2) { grid-column: 1; grid-row: 2; } .card:nth-child(3) { grid-column: 2; grid-row: 2; }
@tflinchPosted about 1 month agoThank you for the feed back this helped me under stand better. The 4th row creates the additional space for the card to stay. the first card is from row 1/2 and the third card is from 1/4 expands all rows but sit directly in the 2nd column.
.card:nth-child(1) { grid-column: 2 / 3; grid-row: 1/2; align-self: center; } .card:nth-child(4) { grid-column: 3; grid-row: 1/3; }
0 - @Delaunay-ISubmitted 10 months ago@tflinchPosted 9 months ago
This solution is not close to the request that was asked. The card you created is good but try to challenge your self to the challenges provided. Many ways to build an application, its best to try them all.
0 - @Mennatalla-KhoughaSubmitted 11 months agoWhat are you most proud of, and what would you do differently next time?
It took too much time and I needed a lot of help
What challenges did you encounter, and how did you overcome them?The styling of the table and fixing the style of the bullet required a lot of research
What specific areas of your project would you like help with?bullet styling and table styling was a pain
@tflinchPosted 11 months agoThis looks to be really good. What area's did you need help on. Posting a code snippet could give us insights on what area's was the most challenging.
0 - @semihmertdevSubmitted 12 months agoWhat are you most proud of, and what would you do differently next time?
I would do the same.
What challenges did you encounter, and how did you overcome them?I didn't encounter any difficulty.
What specific areas of your project would you like help with?I don't want to.
@tflinchPosted 12 months agoIncreasing the card width size to match closer to the design. Very close to the design given.
0 - @alissonport0Submitted 12 months agoWhat are you most proud of, and what would you do differently next time?
I finished an other project, i want it to continue because im feeling very happy and proud of myself
What challenges did you encounter, and how did you overcome them?I had to look for the "fit-content" property to use it, because I wasn't remembering which tag came before
What specific areas of your project would you like help with?I don't know, currently i'm accepting every constructive criticism that will makes me get better in what im trying to do, or even code more faster
@tflinchPosted 12 months agoGreat, clear and simple css. Easy to understand code!
Marked as helpful0