Text properties

text-indent : This property specifies the indentation of the first line of text in a block. The Value is given by a <length>.

text-align : This properly describes how inline content of block is aligned. Values have the following meanings: “left”, “right”, “center” and “justify” text.

text-decoration : This property describes decorations that are added to the text of an element.if the property is specified for a block element, it affects all inline descendants of the element. If it specified for (or affects) an inline element, it affect all boxes generated by the element. Possible values are : “none” which produces no text decoration, “underline” which each line of text is undelined, “overline” with each line of text has a line above it, “line-through” with each line of text has a line through the middle and “blink”. Note that you could combine all values.

white-space : This property declares how whitespace inside the element is handled. Possible values are : “normal” indicate to collapse sequences of whitespace, and break lines as necessary to fill the boxes. “pre” prevents from collapsing sequences of whitescape. Lines are only broken at newlines in the source. “nowrap” collapses whitespaces as for “normal”, but supresses line breaks within text.