uppercase first letter css code example
Example 1: conveert text to uppercase in input field
<input type="text" class="normal"
name="Name" size="20" maxlength="20"
style="text-transform:uppercase" />
Example 2: How do you make each word in a text start with a capital letter?
h1 {
text-transform: capitalize;
}
Example 3: all text in caps using css
.class_name {
text-transform: none|capitalize|uppercase|lowercase|initial|inherit;
}