capitalize first letter if string is small through css code example
Example 1: css all uppercase to capitalize
.link {
text-transform: lowercase;
}
.link::first-line {
text-transform: capitalize;
}
Example 2: all text in caps using css
.class_name {
text-transform: none|capitalize|uppercase|lowercase|initial|inherit;
}