<!DOCTYPE html>
<html>
<head>
<title>The font-kerning property in CSS</title>
<style type="text/css">
div {
font-size: 2rem;
font-family: serif;
color: deeppink;
}
#nokern {
font-kerning: auto;
}
#kern {
font-kerning: auto;
}
</style>
</head>
<body>
<div id="kern">AV T. ij</div>
<div id="nokern">AV T. ij</div>
<textarea id="input">AV T. ij</textarea>
</body>
</html>