monks/text_align_last
The text-align-last CSS property sets how the last line of a block or a line, right before a forced line break, is aligned.
Values
pub const auto_: #(String, String)
- : The affected line is aligned per the value of {{cssxref(“text-align”)}}, unless {{cssxref(“text-align”)}} is
justify, in which case the effect is the same as settingtext-align-lasttostart.
pub const center: #(String, String)
- : The inline contents are centered within the line box.
pub const end: #(String, String)
- : The same as
rightif direction is left-to-right andleftif direction is right-to-left.
pub const justify: #(String, String)
- : The text is justified. Text should line up their left and right edges to the left and right content edges of the paragraph.
pub const left: #(String, String)
- : The inline contents are aligned to the left edge of the line box.
pub const revert_layer: #(String, String)
pub const right: #(String, String)
- : The inline contents are aligned to the right edge of the line box.
pub const start: #(String, String)
- : The same as
leftif direction is left-to-right andrightif direction is right-to-left.