Latest solutions
Social links profile solution
Submitted 5 months ago- if there is any way to to clean up css
- or if there is a better way to make a button click into a link
QR code site css and html
Submitted 6 months agopadding and margin problem. also deciding weather to use css grid or flexbox
Latest comments
- @BorghiiSubmitted 2 months ago@AroParadaPosted about 2 months ago
well structured code just needs adjustment in padding
0 - @developertaskinSubmitted 5 months ago@AroParadaPosted 5 months ago
- use correct font
- add padding to bottom
- make card full width on mobile
Example for mobile code
` @media (max-width: 768px) { .card { width: 110%; /* Full width / height: 100%; / Full height / margin: 0; / Remove margin / border-radius: 0; / Remove rounded corners */ }
.image-container { padding: 0px; /* Adjust padding for smaller screens */ } img { border-radius: 0px; }
.cardBody { padding: 30px; /* Adjust padding for smaller screens */ } } `
0 - @ckulloSubmitted 5 months ago@AroParadaPosted 5 months ago
Great design
- Code is very readable
- Card could be smaller width on mobile
0 - P@Matrix1984Submitted 6 months ago@AroParadaPosted 6 months ago
Great solution and accessibility
- I recommend the following css for the card border
border-style: solid; border-width: 1px;
1 - @sumitsahSubmitted 6 months agoWhat are you most proud of, and what would you do differently next time?
This is by-far the easiest.