HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> div{ font-family: serif; font-size: 23px; } div:nth-child(2){ font-kerning: none; color: red; } div:nth-child(3){ font-kerning: normal; color: blue; } div:nth-child(3){ font-kerning: auto; color: green; } </style> </head> <body> <h1>CSS font-kerning Property</h1> <div>AV T. ij</div> <div>AV T. ij</div> <div>AV T. ij</div> </body> </html>
OUTPUT
×

Save as Private