@mmtomlinSubmitted over 4 years ago
I'd just like to thank anyone that looks at this for their time! Any feedback is helpful.
I'd just like to thank anyone that looks at this for their time! Any feedback is helpful.
Hello everyone, I have complete this challenge, I'm keep trying improve my skill and learning more knowledge,hope you guys can give me some feedback,wish you all have a nice day: )!
Hi, your solution looks awesome. Try using CSS grid for much better results.
I'm not yet so good with CSS grids. Feedbacks would be highly appreciated
Grid gap will add some space between the 4 cards.
/* DESKTOP-VIEW */
@media (min-width: 1400px) {
.card-container {
display: grid;
grid-gap: 30px;
grid-template-areas:
". a ."
"b a c"
"b d c"
". d .";
width: 80vw;
margin: 0 auto;
}
}
I'm not yet so good with CSS grids. Feedbacks would be highly appreciated
Hey, the code looks great. Some space between the cards would make it look much better. Try adding grid-gap in .card-container in styles.css file. for example:
/* GRID-GAP */
grid-gap: 30px;