Answers for "text transformation in css"

1

html text transformation

<p style="text-transform: none;"> All letters will be displayed as entered by the developer. Default value </p>
<p style="text-transform: capitalize;"> All words will be capitalized </p>
<p style="text-transform: uppercase;"> All letters of all words will be in uppercase </p>
<p style="text-transform: lowercase;"> All letters of all words will be displayed in lowercase </p>
Posted by: Guest on April-03-2021
-2

input uppercase with css

<input oninput="let p = this.selectionStart; this.value = this.value.toUpperCase();this.setSelectionRange(p, p);" />
Posted by: Guest on May-12-2020

Code answers related to "text transformation in css"

Browse Popular Code Answers by Language