pub type TextIndent = GenericTextIndent<LengthPercentage>;Expand description
The computed value of text-indent.
Aliased Type§
#[repr(C)]pub struct TextIndent {
pub length: LengthPercentage,
pub hanging: bool,
pub each_line: bool,
}Fields§
§length: LengthPercentageThe amount of indent to be applied to the inline-start of the first line.
hanging: boolApply indent to non-first lines instead of first.
each_line: boolApply to each line after a hard break, not only first in block.