Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> div { font-family: serif; font-size: 20px; } div.example1 { font-kerning: normal; } div.example2 { font-kerning: auto; } </style> </head> <body> <h2>Font-kerning property example</h2> <div class="example1">The text is with font kerning.</div> <div class="example2">The text is without font kerning.</div> </body> </html>