Answers for "html all caps"

CSS
74

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 */
}
Posted by: Guest on June-10-2020
1

html uppercase

<p style="text-transform: uppercase;"> All letters of all words will be in uppercase </p>
Posted by: Guest on April-03-2021
1

html capitalize

<p style="text-transform: capitalize;"> All words will be capitalized </p>
Posted by: Guest on April-03-2021
2

how to make text uppercase html

text-transform: capitalize;
Posted by: Guest on March-21-2021

Browse Popular Code Answers by Language