Skip to content

Instantly share code, notes, and snippets.

@kobitoDevelopment
Last active June 6, 2025 03:16
Show Gist options
  • Save kobitoDevelopment/0bce8a5f879331ab085493b292d68400 to your computer and use it in GitHub Desktop.
Save kobitoDevelopment/0bce8a5f879331ab085493b292d68400 to your computer and use it in GitHub Desktop.
.title {
--radius: 24px;
position: relative;
padding: 16px;
border-end-end-radius: var(--radius);
background-color: #fff;
&::before,
&::after {
content: "";
position: absolute;
height: var(--radius);
aspect-ratio: 1/1;
border-end-end-radius: calc(infinity * 1px);
corner-shape: scoop;
background-color: inherit;
}
&::before {
top: 0;
left: 100%;
}
&::after {
top: 100%;
left: 0;
}
}
<div class="title">カードのタイトル部分</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment