Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>The title of the document </title> <style> div { font-family: Lora, serif; font-size: 35vw; } .gray { font-variant-ligatures: no-common-ligatures; color: #ccc; } .blue { font-variant-ligatures: common-ligatures; color: #1c87c9; } </style> </head> <body> <h2>Font-variant-ligatures property example</h2> <div> <span class="gray">fi</span> <span class="blue">fi</span> </div> </body> </html>