调整skills的位置
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
### 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).
|
||||
|
||||
```html
|
||||
<section class="hero-photo">
|
||||
<img class="bleed" src="" alt="" />
|
||||
<p class="caption">Spring, 2026.</p>
|
||||
</section>
|
||||
```
|
||||
```css
|
||||
.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); }
|
||||
```
|
||||
Reference in New Issue
Block a user