运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <head> <style> /* Specifies that font kerning is applied */ .ex1 { font-kerning: normal; } /* Specifies that font kerning is not applied */ .ex2 { font-kerning: none; } </style> </head> <body> <h1>The font-kerning Property</h1> <div class="ex1">"STAY 'AWAY'"</div> <div class="ex2">"STAY 'AWAY'"</div> </body> </html>