EN
CSS - make first letter of string uppercase
9
points
Using CSS it is possible to capitalize letters in the following way.
Practical example
// ONLINE-RUNNER:browser;
<!doctype html>
<html lang="en">
<head>
<style>
p.capitalize::first-letter {
text-transform: capitalize;
}
</style>
</head>
<body>
<p class="capitalize">this text has been written with small letters only...</p>
</body>
</html>