Answers for "css uppercase first letter"

9

css capitalize first letter

&::first-letter {
  text-transform: capitalize;
}
Posted by: Guest on February-14-2021
98

js first letter uppercase

//capitalize only the first letter of the string. 
function capitalizeFirstLetter(string) {
    return string.charAt(0).toUpperCase() + string.slice(1);
}
//capitalize all words of a string. 
function capitalizeWords(string) {
    return string.replace(/(?:^|\s)\S/g, function(a) { return a.toUpperCase(); });
};
Posted by: Guest on July-22-2019
3

conveert text to uppercase in input field

<input type="text" class="normal" 
       name="Name" size="20" maxlength="20" 
       style="text-transform:uppercase" />
Posted by: Guest on May-19-2020
1

How do you make each word in a text start with a capital letter?

h1 {
  text-transform: capitalize;
}
Posted by: Guest on September-14-2020

Code answers related to "css uppercase first letter"

Code answers related to "Javascript"

Browse Popular Code Answers by Language