28 CSS Close Buttons23 / 28

Pure CSSMIT licensed

Fold Away Close Button

A 3D vanishing act: hovering splits the × horizontally into two half-tiles that hinge backward in perspective — the top half folds up and away, the bottom folds down — like a greeting card closing into the screen. Each half carries a clipped copy of the same glyph, so the seam is invisible until the fold begins.

Published Updated

Live Demo
Try it

The code

<section class="ccb-23" aria-label="Fold away close button demo">
  <button class="ccb-23__close" type="button" aria-label="Close">
    <span class="ccb-23__half ccb-23__half--top" aria-hidden="true"><i class="ccb-23__glyph"></i></span>
    <span class="ccb-23__half ccb-23__half--bot" aria-hidden="true"><i class="ccb-23__glyph"></i></span>
  </button>
</section>
.ccb-23,
.ccb-23 *,
.ccb-23 *::before,
.ccb-23 *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.ccb-23 {
  --fold: 78deg;
  --ink: oklch(0.3 0.03 250);
  font-family: 'Segoe UI',system-ui,sans-serif;
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 24px;
  background: linear-gradient(180deg,oklch(0.95 0.012 240),oklch(0.9 0.02 245));
}

.ccb-23 .ccb-23__close {
  position: relative;
  width: 76px;
  height: 76px;
  border: 1.5px solid oklch(0.85 0.02 245);
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
  perspective: 500px;
  box-shadow: 0 18px 40px -24px oklch(0.4 0.06 245 / .6);
  transition: box-shadow .3s ease;
}

.ccb-23 .ccb-23__half {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transition: transform .45s cubic-bezier(.4,0,.2,1),filter .45s ease;
}

.ccb-23 .ccb-23__half--top {
  clip-path: inset(0 0 50% 0);
  transform-origin: 50% 50%;
}

.ccb-23 .ccb-23__half--bot {
  clip-path: inset(50% 0 0 0);
  transform-origin: 50% 50%;
  transition-delay: .04s;
}

.ccb-23 .ccb-23__glyph {
  position: relative;
  width: 26px;
  height: 26px;
  display: block;
}

.ccb-23 .ccb-23__glyph::before,
.ccb-23 .ccb-23__glyph::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--ink);
}

.ccb-23 .ccb-23__glyph::before {
  transform: translate(-50%,-50%) rotate(45deg);
}

.ccb-23 .ccb-23__glyph::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}

.ccb-23 .ccb-23__close:hover .ccb-23__half--top {
  transform: rotateX(var(--fold));
  filter: brightness(.72);
}

.ccb-23 .ccb-23__close:hover .ccb-23__half--bot {
  transform: rotateX(calc(var(--fold) * -1));
  filter: brightness(.82);
}

.ccb-23 .ccb-23__close:hover {
  box-shadow: 0 10px 22px -16px oklch(0.4 0.06 245 / .5);
}

.ccb-23 .ccb-23__close:active {
  transform: scale(.95);
}

.ccb-23 .ccb-23__close:focus-visible {
  outline: 3px solid oklch(0.55 0.15 250);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .ccb-23 .ccb-23__half {
    transition: none;
  }

  .ccb-23 .ccb-23__close:hover .ccb-23__half--top,
    .ccb-23 .ccb-23__close:hover .ccb-23__half--bot {
    transform: none;
    filter: none;
  }
}
/* No JavaScript — two clip-path halves of one glyph hinge on rotateX from seam-edge origins; brightness fades sell the depth. */
Paste this into ChatGPT, Claude, Cursor, or any coding assistant. The block below is pre-framed with everything the AI needs to integrate this demo into your project — markup, styles, scoping notes, and the source URL. Hit Copy and paste straight into your chat.
Here's a working CSS Close Button from CodeFronts. Use it as-is or adapt to your framework. All classes are scoped under a unique prefix so the code won't collide with your existing styles. MIT licensed.
Demo: Fold Away Close Button
Source: https://codefronts.com/components/css-close-buttons/fold-away/

A 3D vanishing act: hovering splits the × horizontally into two half-tiles that hinge backward in perspective — the top half folds up and away, the bottom folds down — like a greeting card closing into the screen. Each half carries a clipped copy of the same glyph, so the seam is invisible until the fold begins.
## HTML
```html
<section class="ccb-23" aria-label="Fold away close button demo">
  <button class="ccb-23__close" type="button" aria-label="Close">
    <span class="ccb-23__half ccb-23__half--top" aria-hidden="true"><i class="ccb-23__glyph"></i></span>
    <span class="ccb-23__half ccb-23__half--bot" aria-hidden="true"><i class="ccb-23__glyph"></i></span>
  </button>
</section>
```
## CSS
```css
.ccb-23,
.ccb-23 *,
.ccb-23 *::before,
.ccb-23 *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.ccb-23 {
  --fold: 78deg;
  --ink: oklch(0.3 0.03 250);
  font-family: 'Segoe UI',system-ui,sans-serif;
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 24px;
  background: linear-gradient(180deg,oklch(0.95 0.012 240),oklch(0.9 0.02 245));
}

.ccb-23 .ccb-23__close {
  position: relative;
  width: 76px;
  height: 76px;
  border: 1.5px solid oklch(0.85 0.02 245);
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
  perspective: 500px;
  box-shadow: 0 18px 40px -24px oklch(0.4 0.06 245 / .6);
  transition: box-shadow .3s ease;
}

.ccb-23 .ccb-23__half {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transition: transform .45s cubic-bezier(.4,0,.2,1),filter .45s ease;
}

.ccb-23 .ccb-23__half--top {
  clip-path: inset(0 0 50% 0);
  transform-origin: 50% 50%;
}

.ccb-23 .ccb-23__half--bot {
  clip-path: inset(50% 0 0 0);
  transform-origin: 50% 50%;
  transition-delay: .04s;
}

.ccb-23 .ccb-23__glyph {
  position: relative;
  width: 26px;
  height: 26px;
  display: block;
}

.ccb-23 .ccb-23__glyph::before,
.ccb-23 .ccb-23__glyph::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--ink);
}

.ccb-23 .ccb-23__glyph::before {
  transform: translate(-50%,-50%) rotate(45deg);
}

.ccb-23 .ccb-23__glyph::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}

.ccb-23 .ccb-23__close:hover .ccb-23__half--top {
  transform: rotateX(var(--fold));
  filter: brightness(.72);
}

.ccb-23 .ccb-23__close:hover .ccb-23__half--bot {
  transform: rotateX(calc(var(--fold) * -1));
  filter: brightness(.82);
}

.ccb-23 .ccb-23__close:hover {
  box-shadow: 0 10px 22px -16px oklch(0.4 0.06 245 / .5);
}

.ccb-23 .ccb-23__close:active {
  transform: scale(.95);
}

.ccb-23 .ccb-23__close:focus-visible {
  outline: 3px solid oklch(0.55 0.15 250);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .ccb-23 .ccb-23__half {
    transition: none;
  }

  .ccb-23 .ccb-23__close:hover .ccb-23__half--top,
    .ccb-23 .ccb-23__close:hover .ccb-23__half--bot {
    transform: none;
    filter: none;
  }
}
```

## JavaScript
```js
/* No JavaScript — two clip-path halves of one glyph hinge on rotateX from seam-edge origins; brightness fades sell the depth. */
```

How this works

The button holds perspective:500px. Inside, two absolutely-stacked halves each contain a full-size × but clip to their half with clip-path:inset(0 0 50% 0) / inset(50% 0 0 0) — the glyph looks whole at rest. Each half's transform-origin sits ON the seam (bottom edge for the top half, top edge for the bottom half), so hovering hinges them apart with rotateX(±78deg) — exactly like a card folding along its crease.

Depth cues do the selling: each half darkens as it rotates away (a brightness filter transition) and a soft shadow line grows along the seam. The halves fold slightly out of phase (40ms delay on the bottom) because perfectly synchronized folds read as a scale, not a fold.

Make it yours

  • Fold angle via --fold (78° default; 90° vanishes completely edge-on).
  • Vertical seam: swap the inset clips to left/right halves and rotateY instead.
  • Fold on :active so the dismissal itself performs the animation before removal.
  • Deepen perspective (500px → 300px) for a more aggressive wide-angle look.

Gotchas — read before shipping

  • transform-origin must sit exactly on the seam edge — a centred origin makes halves intersect through each other.
  • Both halves need identical glyph geometry; build them from one shared CSS custom property to prevent drift.
  • At fold angles past ~85° add backface-visibility:hidden, or the darkened backs flash through.

Browser support

ChromeSafariFirefoxEdge
111+16.4+113+111+

clip-path + 3D transforms — both a decade old; the phase-offset fold is pure technique.

Techniques used in this demo

Search CodeFronts

Loading…