Category: CSS

Word Spacing

The CSS word-spacing property can be used to increase or decrease space between text words of a html page. The word-spacing values are: normal, length, initial, inherit. Word Spacing properties are: word-spacing: 0px; word-spacing: 30px; word-spacing: 1.5cm; Word Spacing example: <html>...

Line Height

The CSS line-height property can be used to increase or decrease text lines of a html page. The line-height values are: normal, number, length, %, initial, inherit. Line Height properties are: line-height: 30px; line-height: 80%; line-height: 1.5cm; line-height: 3; Line Height...

Text Indent

The CSS text-indent property can be used to indent the text of a html page. The text-indent values are: length, %, initial, inherit. Text Indent properties are: text-indent: 30px; text-indent: 30%; text-indent: 3cm; text-indent: 3em; Text Indent example: <html> <head> </head>...

Text Decoration

The CSS text-decoration property can be used to decorate a text in a html page. The text-decoration values are: none, underline, overline, line-through. Text Decoration properties are: text-decoration: none; text-decoration: underline; text-decoration: overline; text-decoration: line-through; Text Decoration example: <html> <head> </head>...

Text Transform

The CSS text-transform property can be used to format the text in a web page, the words in a text can be converted into uppercase, lowercase or capitalize. Text Transform properties are: text-transform: none; text-transform: uppercase; text-transform: lowercase; text-transform: capitalize; Text...