css capitalize first letter
&::first-letter {
text-transform: capitalize;
}
css capitalize first letter
&::first-letter {
text-transform: capitalize;
}
conveert text to uppercase in input field
<input type="text" class="normal"
name="Name" size="20" maxlength="20"
style="text-transform:uppercase" />
How do you make each word in a text start with a capital letter?
h1 {
text-transform: capitalize;
}
make first letter uppercase
const publication = "freeCodeCamp";
publication[0].toUpperCase() + publication.substring(1);
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us