Horje
css font variant small caps Code Example
css all caps
.uppercase {
  text-transform: uppercase;
}

#example {
  text-transform: none;	/* No capitalization, the text renders as it is (default) */
  text-transform: capitalize;	/* Transforms the first character of each word to uppercase */
  text-transform: uppercase;	/* Transforms all characters to uppercase */
  text-transform: lowercase;	/* Transforms all characters to lowercase */
  text-transform: initial;	/* Sets this property to its default value */
  text-transform: inherit;	/* Inherits this property from its parent element */
}
all text in caps using css
.class_name {
  text-transform: none|capitalize|uppercase|lowercase|initial|inherit;
}
css font variant small caps
p.small {
  font-variant: small-caps;
}




Css

Related
prevent text from going to next line css Code Example prevent text from going to next line css Code Example
phone css Code Example phone css Code Example
css add circle to icon cart Code Example css add circle to icon cart Code Example
download s3 bucket files on l local Code Example download s3 bucket files on l local Code Example
remove onclick highlight from anchor tag when opened in mobile Code Example remove onclick highlight from anchor tag when opened in mobile Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10