586 B
586 B
H6 · Photographic Fold
Single full-bleed image fills the viewport. Caption sits in a corner. Use when: you have real photography that earns full-bleed. Don't confuse with: H2 Split (which pairs image with text in a grid).
<section class="hero-photo">
<img class="bleed" src="" alt="" />
<p class="caption">Spring, 2026.</p>
</section>
.hero-photo { position: relative; height: 80dvh; }
.hero-photo .bleed { width: 100%; height: 100%; object-fit: cover; }
.hero-photo .caption { position: absolute; bottom: var(--space-md); right: var(--space-md); }