Crop marks

재단 표시

Small crosshair marks printed just outside each corner — telling the cutter exactly where the trim line is.

Also known as: 트림 마크Trim marksCutting marks
···
html
<div class="sheet">
  <span class="mark h tl"></span><span class="mark v tl"></span>
  <span class="mark h tr"></span><span class="mark v tr"></span>
  <span class="mark h bl"></span><span class="mark v bl"></span>
  <span class="mark h br"></span><span class="mark v br"></span>
</div>
css
.sheet{position:relative;height:64%;aspect-ratio:3/4;border:1px solid var(--line);background:var(--surface)}
.mark{position:absolute;background:var(--fg);animation:pulse 2.4s ease-in-out infinite}
.h{width:14px;height:1.5px}
.v{width:1.5px;height:14px}
.tl.h{top:-1.5px;left:-24px;animation-delay:0s}
.tl.v{top:-24px;left:-1.5px;animation-delay:0s}
.tr.h{top:-1.5px;right:-24px;animation-delay:.6s}
.tr.v{top:-24px;right:-1.5px;animation-delay:.6s}
.bl.h{bottom:-1.5px;left:-24px;animation-delay:1.2s}
.bl.v{bottom:-24px;left:-1.5px;animation-delay:1.2s}
.br.h{bottom:-1.5px;right:-24px;animation-delay:1.8s}
.br.v{bottom:-24px;right:-1.5px;animation-delay:1.8s}
@keyframes pulse{0%,60%,100%{opacity:.45}20%{opacity:1}}

Crop marks sit just outside the actual printed area (bleed included), aligned with where the trim line would extend, as two short strokes — one horizontal, one vertical — kept apart so they never overlap the area that gets cut away.

InDesign and Illustrator generate these automatically when you enable "crop marks" on export. You rarely draw them by hand, but it helps to know they mark the exact trim line and are never meant to end up on the finished piece — they only live in the margin around it.

When several pieces are ganged onto one press sheet, each one needs its own crop marks, which is why print shops ask for files exported with marks intact rather than hand-drawn approximations.

When to use

Before sending a file to a print shop, confirm the export included crop marks. Many online print templates already bake them in, so you often don't draw them yourself.