Posts

Showing posts with the label Results

Css Text-decoration-thickness Example

The text-decoration-thickness CSS property sets the stroke thickness of the decoration line that is used on text in an element, such as a line-through, underline, or overline. Syntax /* Single keyword */ text-decoration-thickness : auto ; text-decoration-thickness : from-font ; /* length */ text-decoration-thickness : 0.1em ; text-decoration-thickness : 3px ; /* percentage */ text-decoration-thickness : 10% ; /* Global values */ text-decoration-thickness : inherit ; text-decoration-thickness : initial ; text-decoration-thickness : unset ; Values auto The browser chooses an appropriate width for the text decoration line. from-font If the font file includes information about a preferred thickness, use that value. If the font file doesn't include this information, behave as if auto was set, with the browser choosing an appropriate thickness. <length> Specifies the thickness of the text decoration line as a <length> , overriding the font file suggestion ...

Css Text-align-last Example

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. Syntax /* Keyword values */ text-align-last : auto ; text-align-last : start ; text-align-last : end ; text-align-last : left ; text-align-last : right ; text-align-last : center ; text-align-last : justify ; /* Global values */ text-align-last : inherit ; text-align-last : initial ; text-align-last : unset ; Values auto The affected line is aligned per the value of text-align , unless text-align is justify , in which case the effect is the same as setting text-align-last to start . start The same as left if direction is left-to-right and right if direction is right-to-left. end The same as right if direction is left-to-right and left if direction is right-to-left. left The inline contents are aligned to the left edge of the line box. right The inline contents are aligned to the right edge of the line box. center The inline conten...