HTML Editor
<!DOCTYPE html> <html lang="en-US"> <body> <h1>CSS font-kerning Property</h1> <p>AV T. ij</p> <button onclick="myFunction()">Click Me</button> <script> var x = document.getElementsByTagName("p")[0]; function myFunction(){ x.style.fontKerning = "none"; } </script> <p><strong>Note</strong>: click on the button to change the 'font-kerning' from auto to none.</p> </body> </html>
OUTPUT
×

Save as Private