Answers for "html first letter capital"

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
1

input uppercase with css

input { 
    text-transform: uppercase;
}
Posted by: Guest on May-12-2020
21

text transform in css

/*HTMl*/
<p >Initial String
  <h2>Lorem ipsum dolor sit amet</h2>
</p>
<div class="heading">
  This will be capitalize
</div>

 /*CSS*/
.heading {
  text-transform: capitalize;
}
/*OTHER TEXT TRANSFORM*/ 
text-transform: none;
text-transform: capitalize;
text-transform: uppercase;
text-transform: lowercase;
text-transform: full-width;
text-transform: full-size-kan
Posted by: Guest on September-02-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language