Bleed

도련

Extra artwork printed past the trim line so a slightly off cut never leaves a white sliver at the edge.

Also known as: 재단여백Bleed areaTrim vs bleed
···
html
<div class="board">
  <div class="sheet">
    <div class="art" id="art"></div>
    <div class="trim"></div>
    <span class="lbl lt">trim</span>
    <span class="lbl lb">bleed</span>
  </div>
  <div class="tag" id="tag"></div>
</div>
css
.board{position:relative;width:100%;height:100%;display:grid;place-items:center}
.sheet{position:relative;height:72%;aspect-ratio:3/4;outline:2px dashed var(--accent-2);outline-offset:14px}
.trim{position:absolute;inset:0;border:1.5px solid var(--fg);pointer-events:none}
.art{position:absolute;border-radius:2px;background:linear-gradient(135deg,var(--accent),var(--accent-3));transition:inset .9s cubic-bezier(.4,0,.2,1)}
.art.short{inset:16%}
.art.full{inset:-14px}
.lbl{position:absolute;font:700 8px/1 ui-monospace,monospace;letter-spacing:.06em;color:var(--muted);text-transform:uppercase}
.lt{top:-13px;left:0}
.lb{top:-13px;right:0}
.tag{position:absolute;bottom:7%;font:600 11px/1.3 system-ui,sans-serif;color:var(--muted);text-align:center;padding:0 6%}
js
const art = document.getElementById('art');
const tag = document.getElementById('tag');
let short = true;
function apply(){
  art.className = 'art ' + (short ? 'short' : 'full');
  tag.textContent = short ? '재단선 안쪽에서 끝남 — 밀리면 흰 여백' : '도련선까지 확장 — 밀려도 안전';
}
apply();
setInterval(() => { short = !short; apply(); }, 1900);

Printed sheets get trimmed on a cutter, and the blade is never perfectly aligned to the millimetre. If a background or photo stops exactly at the trim line, even a hair of misalignment leaves a sliver of raw white paper along the edge.

The fix is to extend backgrounds and images past the trim line — commonly 3mm (2–5mm depending on the print shop). That extra margin is the bleed, and its outer edge is the bleed line. The trim line marks where the blade actually cuts; the bleed line marks "fill out to here so nothing shows through."

The demo alternates between two states — art that stops at the trim line (risky, leaves a white gap if the cut drifts) and art extended to the bleed line (safe, stays full-colour no matter which way the blade slips).

When to use

Essential whenever a background or photo touches the page edge — business cards, posters, brochures. Text and logos go the other way: keep them at least 3–5mm inside the trim line (a safe zone).