Showing posts with label CSS-Text-Properties. Show all posts
Showing posts with label CSS-Text-Properties. Show all posts

Text-Underline-Position

Text-underline-position in CSS.

Syntax (text-underline-position : values;)
  • text-underline-position
  • Values: above | below
Example:

.class_name{text-underline-position : below;}

Text-Transform

Text-transform in CSS.

Syntax (text-transform : values;)
  • text-transform
  • Values: capitalize | uppercase | lowercase | none
Example:

.class_name{text-transform : lowercase;}

Text-Overflow

Text-overflow in CSS.

Syntax (text-overflow : values;)
  • text-overflow
  • Values: clip | ellipsis
Example:

.class_name{text-overflow : ellipsis;}

Text-Kashida-Space

Text-kashida-space in CSS.

Syntax (text-kashida-space : values;)
  • text-kashida-space
  • Values: percentage | inherit
Example:

.class_name{text-kashida-space : inherit;}

Text-Justify

Text-justify in CSS.

Syntax (text-justify : values;)
  • text-justify
  • Values: inter word | newspaper | distribute-all-line | auto | inter ideograph | distribute
Example:

.class_name{text-justify : auto;}

Text-Indent

Text-indent in CSS.

Syntax (text-indent : values;)
  • text-indent
  • Values: percentage | length
Example:

.class_name{text-indent : percentage;}

Text-Decoration

Text-decoration in CSS.

Syntax (text-decoration : values;)
  • text-decoration
  • Values: none | underline | overline | line-through
Example:

.class_name{text-decoration : none;}

Text-Autospace

Text-autospace in CSS.

Syntax (text-autospace : values;)
  • text-autospace
  • Values: none | center ideograph-alpha | ideograph-numeric | ideograph-parenthesis | ideograph-space
Example:

.class_name{text-autospace : none;}

Text-Align

Text-align in CSS.

Syntax (text-align : values;)
  • text-align
  • Values: left | right | center | justify
Example:

.class_name{text-align : right;}