<div class="card">
<div class="card__tag">Must Try</div>
<div class="card__content">
<h2>Card Title</h2>
<p>Some des will go here and I need it to wrap into lines</p>
</div>
<div class="card__thumb">
<img src="https://picsum.photos/966/358?random=1" width="966" height="358" alt="" />
</div>
</div>
<div class="card">
<div class="card__tag">Must Try</div>
<div class="card__content">
<h2>Card Title</h2>
<p>Some des will go here and I need it to wrap into lines</p>
</div>
<div class="card__thumb">
<img src="https://picsum.photos/966/358?random=2" width="966" height="358" alt="" />
</div>
</div>
<div class="card">
<div class="card__tag">Must Try</div>
<div class="card__content">
<h2>Card Title</h2>
<p>Some des will go here and I need it to wrap into lines</p>
</div>
<div class="card__thumb">
<img src="https://picsum.photos/966/358?random=3" width="966" height="358" alt="" />
</div>
</div>
<div class="card">
<div class="card__tag">Must Try</div>
<div class="card__content">
<h2>Card Title</h2>
<p>Some des will go here and I need it to wrap into lines</p>
</div>
<div class="card__thumb">
<img src="https://picsum.photos/966/358?random=4" width="966" height="358" alt="" />
</div>
</div>
@import url("https://fonts.googleapis.com/css2?family=Exo:wght@600&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 100vw;
min-height: 100vh;
font-family: "Exo", Arial, sans-serif;
background-color: #557;
padding: 20px;
display: grid;
place-content: center;
gap: 20px;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
img {
max-width: 100%;
height: auto;
vertical-align: middle;
border-radius: 5px;
object-fit: cover;
object-position: center;
height: 100%;
min-height: 0;
}
.card {
color: #fff;
text-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
max-width: 60vw;
background-color: #fff;
border-radius: 5px;
border: 1px solid #e8e0e0;
box-shadow: 0 3px 10px 0 rgb(0 0 0 / 0.3);
padding: 5px;
}
.card__tag {
background-color: #2196f3;
padding: 0.75rem 1.75rem 0.75rem 1rem;
border-radius: 0 10rem 10rem 0;
}
.card__content {
background-image: linear-gradient(
to top,
hsla(0, 0%, 0%, 0.62) 0%,
hsla(0, 0%, 0%, 0.614) 7.5%,
hsla(0, 0%, 0%, 0.596) 13.5%,
hsla(0, 0%, 0%, 0.569) 18.2%,
hsla(0, 0%, 0%, 0.533) 22%,
hsla(0, 0%, 0%, 0.49) 25.3%,
hsla(0, 0%, 0%, 0.441) 28.3%,
hsla(0, 0%, 0%, 0.388) 31.4%,
hsla(0, 0%, 0%, 0.333) 35%,
hsla(0, 0%, 0%, 0.277) 39.3%,
hsla(0, 0%, 0%, 0.221) 44.7%,
hsla(0, 0%, 0%, 0.167) 51.6%,
hsla(0, 0%, 0%, 0.117) 60.2%,
hsla(0, 0%, 0%, 0.071) 70.9%,
hsla(0, 0%, 0%, 0.032) 84.1%,
hsla(0, 0%, 0%, 0) 100%
);
}
.card__thumb {
border-radius: 5px;
overflow: hidden;
}
.card {
display: grid;
gap: 1rem;
}
.card > * {
grid-area: 1 / -1;
}
.card__tag {
z-index: 3;
align-self: start;
justify-self: start;
margin-top: 2rem;
}
.card__content {
z-index: 2;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 1rem;
}
.card__thumb {
z-index: 1;
}
.card:not(:first-child) {
padding: 20px;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.23);
}
.card:not(:first-child) .card__content {
display: contents;
background: #fff;
color: #444;
}
.card:not(:first-child) .card__thumb {
margin-left: -15px;
margin-right: -15px;
border-radius: 0;
}
.card:nth-child(2) h2 {
grid-row: 1;
}
.card:nth-child(2) p {
grid-row: 2;
}
.card:nth-child(2) .card__thumb {
grid-row: 3;
margin-bottom: -15px;
}
.card:nth-child(2) .card__tag {
grid-row: 3;
justify-self: end;
align-self: end;
margin-bottom: 1rem;
border-radius: 10rem 0 0 10rem;
padding: 0.75rem 1rem 0.75rem 1.75rem;
margin-right: -15px;
}
.card:nth-child(2) img {
border-radius: 0 0 5px 5px;
}
.card:nth-child(3) .card__thumb {
margin-top: -15px;
}
.card:nth-child(3) img {
border-radius: 5px 5px 0 0;
}
.card:nth-child(3) .card__tag {
margin-left: -15px;
}
.card:nth-child(4) h2 {
grid-row: 1;
}
.card:nth-child(4) .card__thumb {
grid-row: 2;
}
.card:nth-child(4) .card__tag {
grid-row: 2;
margin-left: -15px;
}
.card:nth-child(4) img {
border-radius: 0;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.