Latest solutions
CSS Grid and FlexBox
Submitted 2 months agoI look forward to your feedback for a better design. What could I have done better in this project?
blog-preview-card
Submitted 3 months agoI think I have many gaps in mobile responsive design, and I would like help in this area.
Latest comments
- @mustafasen97Submitted 2 months ago
- @PaulgultiSubmitted 2 months ago
- @godsiduxSubmitted 3 months agoWhat are you most proud of, and what would you do differently next time?
I’m most proud of how I used Flexbox to create a clean and responsive layout for the blog preview card, ensuring it looks great on different screen sizes. Next time, I’d focus more on adding subtle animations or hover effects to make the design more interactive and visually engaging.
What challenges did you encounter, and how did you overcome them?One challenge I faced was aligning elements properly within the card, especially when ensuring responsiveness across different screen sizes. I overcame this by experimenting with Flexbox properties like justify-content and align-items for adjustments. Testing frequently on mobile device also helped me fine-tune the design.
What specific areas of your project would you like help with?I would like help with improving the overall visual appeal of the blog preview card, especially in terms of adding creative hover effects and transitions. Feedback on making the design more engaging and professional while maintaining responsiveness would also be appreciated.
@volti42Posted 3 months agoTo center the blog card, use the following code for the body: body{ background-color: hsl(47, 88%, 63%); display: grid; align-items: center; place-items: center; min-height: 100vh; text-align: center; justify-content: center; font-family: "Outfit", serif; }
Marked as helpful0 - @Dhiman-Chandra-RaySubmitted 3 months ago@volti42Posted 3 months ago
Hello! To create a similar project, adapt the background color to match the specified color.
Create a box element by adding a <div> tag in the HTML and using the following CSS:
.c { height: 500px; width: 315px; background-color: white; border-radius: 20px; box-shadow: 0px 4px hsl(216, 15%, 48%); }
If you'd like additional assistance, feel free to ask! 😊
0