Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
<style>
div {
font-family: serif;
font-size: 20px;
}
div.example1 {
font-kerning: normal;
}
div.example2 {
font-kerning: auto;
}
</style>
</head>
<body>
<h2>Exemple de la propriété de font-kerning</h2>
<div class="example1">Ce texte est avec crénage de police.</div>
<div class="example2">Ce texte est sans crénage de police.</div>
</body>
</html>