<!DOCTYPE html>
<html>
<head>
<style>
.a {text-transform:capitalize}
.b {text-transform:lowercase}
</style>
</head>
<body>
<h2>Exemple de la propriété text-transform</h2>
<div class="a">"Propriété text transform"</div>
</br>
<div class="b">"C'est quelque paragraphe par exemple".</div>
</body>
</html>