<main class="comic">
<div class="panels">
<div class="panel-1">
<img src="https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ" alt="" />
</div>
<div class="panel-2">
<img src='https://images.unsplash.com/photo-1524772128034-3ecf9a73cbe9?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&fit=max&ixid=eyJhcHBfaWQiOjE0NTg5fQ' alt=''>
</div>
<div class="panel-3">
<img src='https://images.unsplash.com/photo-1496890666403-e6cf521841e6?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&fit=max&ixid=eyJhcHBfaWQiOjE0NTg5fQ' alt=''>
</div>
<div class="panel-4">
<img src='https://images.unsplash.com/photo-1538291323976-37dcaafccb12?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&fit=max&ixid=eyJhcHBfaWQiOjE0NTg5fQ' alt=''>
</div>
<div class="panel-5">
<img src='https://images.unsplash.com/photo-1523597020744-b68b1edd3e1c?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&fit=max&ixid=eyJhcHBfaWQiOjE0NTg5fQ' alt=''>
</div>
</div>
</main>
<a class="collection" href="https://codepen.io/collection/DjwRaP/" target="_blank">comic layout collection</a>
.comic {
position: relative;
margin: 0 auto;
background-image: url(https://images.unsplash.com/photo-1513628253939-010e64ac66cd?ixlib=rb-1.2.1&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ);
background-size: cover;
background-position: center;
overflow: hidden;
}
.panels {
position: absolute;
left: -20%;
right: -20%;
bottom: -10%;
top: 20%;
display: grid;
grid-template-columns: 3fr repeat(4, 1fr) 2fr;
transform: rotate(-20deg) translateY(100px);
}
[class^=panel-] {
background-color: white;
background-size: cover;
> img {
width: 100%;
height: 100%;
object-fit: cover;
}
}
.panel-1 {
grid-column: 1 / 1;
grid-row: 1;
clip-path: polygon(1% 2%, 98.5% 15.75%, 89% 100%, 0 100%);
transform: translate3d(0, 0, 40px);
> img {
clip-path: polygon(1% 2%, 98.5% 15.75%, 89% 100%, 0 100%);
transform: scale(0.95);
transform-origin: 70% 22%;
}
}
.panel-2 {
position: relative;
grid-column: 1 / span 3;
grid-row: 1;
z-index: 1;
clip-path: polygon(59.51% 16.01%, 80.2% 18.43%, 86% 100%, 54% 100%);
> img {
position: absolute;
width: 140%;
height: 140%;
object-fit: fill;
clip-path: polygon(42.69% 11.52%, 57.23% 13.1%, 60.22% 55.28%, 39.96% 51.88%);
transform: scale(0.95);
transform-origin: 50% 20%;
}
}
.panel-3 {
position: relative;
grid-column: 3 / span 4;
grid-row: 1;
clip-path: polygon(0.59% 18.42%, 20.97% 20.56%, 77.79% 71.46%, 63.78% 100.53%, 5.52% 79.63%);
z-index: 2;
> img {
position: absolute;
top: 120px;
left: -20px;
width: 74%;
height: 70%;
clip-path: polygon(7.08% 0.1%, 35.11% 3.17%, 123.54% 87.61%, 96.26% 103.9%, 14.09% 88.78%);
transform: scale(0.95);
transform-origin: 28% 20%;
}
}
.panel-4 {
grid-column: 4 / span 4;
grid-row: 1;
clip-path: polygon(1.5% 20.49%, 25.08% 19.07%, 86.59% 31.01%, 58.76% 61.02%);
z-index: 1;
> img {
clip-path: polygon(2.09% 20.06%, 25.08% 18.64%, 86.59% 30.58%, 59.93% 60.88%);
transform: scale(0.95);
transform-origin: 14% 35%;
}
}
.panel-5 {
grid-column: 5 / span 2;
grid-row: 1;
clip-path: polygon(1% 18.82%, 33.03% 14.35%, 99.7% 16.36%, 69.34% 29.11%);
transform: translate3d(0, 0, 200px);
> img {
clip-path: polygon(2.83% 18.08%, 34.17% 13.61%, 99.7% 15.62%, 76.89% 28.96%);
transform: scale(0.95);
transform-origin: 14% 35%;
}
}
// Themeing
body {
background-color: #333745;
display: grid;
place-items: start center;
grid-template-rows: max-content auto;
gap: 1rem;
height: 100vh;
}
.comic {
width: 500px;
height: 705px;
padding: 1rem;
margin: 2rem 0;
background-color: #fff;
box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.2);
}
.collection {
position: absolute;
display: block;
padding: 0.5rem 1rem;
border: 1px solid #F07739;
left: 10px;
top: 10px;
color: #F07739;
text-decoration: none;
font-weight: 700;
&:hover {
background-color: #F07739;
color: #333745;
}
}
View Compiled
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.