Saltar al contenido

cómo hacer mayúsculas en el ejemplo de código html

Ejemplo 1: CSS todo en mayúsculas

.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 */
}

Ejemplo 2: html en mayúsculas

<p style="text-transform: uppercase;"> All letters of all words will be in uppercase </p>

Ejemplo 3: cómo hacer que el texto sea html en mayúsculas

text-transform: capitalize;
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *