CSS bleed Property

CSS bleed Property

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.

Some property extensions are added, such as -webkit- for Safari, Google Chrome, and Opera (newer versions), -moz- for Firefox, -o- for older versions of Opera, etc.
This property is deprecated.
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 the crop. If the value of marks is not cropping, 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 parent's element.

Reactions

Post a Comment

0 Comments

close