CSS bleed Property


The bleed CSS property specifies the extent of the page bleed area outside the page box.

This property only has an effect if marks are cropped.

It has two values: “auto” and “length”. If the values of marks are cropped the “auto” value computes to 6pt. Otherwise, it computes to zero. The “length” value specifies by how far outward, in each direction, the bleed area extends past the page box.

Initial Valueauto
Applies toPage content.
InheritedYes.
AnimatableNo.
VersionCSS3
DOM Syntaxobject.style.bleed = “auto”;

Syntax

bleed: auto | length;

Use the code example below of the bleed property to see the result:

@page {
  bleed: 1cm;
}

Values

ValueDescription
autoComputes to 6pt if the value of marks is crop. If the value of marks is not crops, it computes to 0.
lengthSpecifies by how far outward, in each direction, the bleed area extends past the page box.
initialIt makes the property use its default value.
inheritIt inherits the property from its parents element.

Leave a Reply

Your email address will not be published. Required fields are marked *