how to change text in capitals in html code example
Example: css all uppercase to capitalize
.link {
text-transform: lowercase;
}
.link::first-line {
text-transform: capitalize;
}
.link {
text-transform: lowercase;
}
.link::first-line {
text-transform: capitalize;
}