make font all caps css code example
Example 1: all text in caps using css
.class_name {
text-transform: none|capitalize|uppercase|lowercase|initial|inherit;
}
Example 2: css all uppercase to capitalize
.link {
text-transform: lowercase;
}
.link::first-line {
text-transform: capitalize;
}