Horje
css all 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 */
}
input uppercase with css
input { 
    text-transform: uppercase;
}
css all uppercase to capitalize
.link {
  text-transform: lowercase;
 
}

.link::first-line {
  text-transform: capitalize;
}
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 all caps
div{
	text-transform: uppercase;
}




12

Related
css opacity example Code Example css opacity example Code Example
what is shadow house about Code Example what is shadow house about Code Example
css first child Code Example css first child Code Example
css reset style Code Example css reset style Code Example
how to set css style using jquery Code Example how to set css style using jquery Code Example

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