<section>
<svg viewBox="0 0 236 200"><path d="M0,0 C40,240 200,240 240,0" fill="none" stroke="lightgrey"/></svg>
<div class="pathed">0%</div>
<div class="pathed">20%</div>
<div class="pathed">40%</div>
<div class="pathed">60%</div>
<div class="pathed">80%</div>
<div class="pathed">100%</div>
</section>
section {
width: 240px;
height: 200px;
border: 2px dashed lightgrey
}
body {
display: flex;
padding: 10px;
flex-wrap: wrap;
gap: 30px;
margin: 0;
height: 100vh;
justify-content: center;
align-items: center;
}
div {
width: 50px;
height: 50px;
border: 1px solid hsl(343,100%,58%,.3);
border-right: 5px solid hsl(343,100%,58%);
background: hsla(343,100%,58%,.3);
display: flex;
justify-content:center;
align-items: center;
font-family: monospace, sans-serif;
}
.pathed {
offset-path: path('M0,0 C40,240 200,240 240,0');
position: absolute;
}
.pathed:nth-of-type(2) {
offset-distance: 20%;
}
.pathed:nth-of-type(3) {
offset-distance: 40%;
}
.pathed:nth-of-type(4) {
offset-distance: 60%;
}
.pathed:nth-of-type(5) {
offset-distance: 80%;
}
.pathed:nth-of-type(6) {
offset-distance: 100%;
}
code {
position: absolute;
top: 100px;
right: 10px;
left: 10px;
line-height: 1.5;
}
section {
position: relative;
}
* {
box-sizing: border-box;
}
svg {
position: absolute;
opacity: .333;
stroke-width: 2px;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.