“Cały tekst w czapkach za pomocą CSS” Kod odpowiedzi

CSS Wszystkie czapki

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

CSS TEKST TRANSFORM

#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 */
}
garzj

Wejście wielki z CSS

input { 
    text-transform: uppercase;
}
mbah bejo

CSS WSZYSTKIE ODPOWIEDZIALNE

.link {
  text-transform: lowercase;
 
}

.link::first-line {
  text-transform: capitalize;
}
Ugly Unicorn

Cały tekst w czapkach za pomocą CSS

.class_name {
  text-transform: none|capitalize|uppercase|lowercase|initial|inherit;
}
Matteoweb

Wejście wielki z CSS

<input oninput="let p = this.selectionStart; this.value = this.value.toUpperCase();this.setSelectionRange(p, p);" />
mbah bejo

Odpowiedzi podobne do “Cały tekst w czapkach za pomocą CSS”

Pytania podobne do “Cały tekst w czapkach za pomocą CSS”

Więcej pokrewnych odpowiedzi na “Cały tekst w czapkach za pomocą CSS” w CSS

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu