Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Titre du document</title> <style> .ex1 { margin: 0; font-size: 2em; text-decoration: underline #1c87c9; text-decoration-skip-ink: none; } .ex2 { margin: 0; font-size: 2em; text-decoration: underline #1c87c9; text-decoration-skip-ink: auto; } </style> </head> <body> <h2>Exemple de la propriété text-decoration-skip-ink</h2> <h3>Text-decoration-skip-ink: none;</h3> <p class="ex1">Lorem ipsum est simplement du faux texte</p> <h3>Text-decoration-skip-ink:auto;</h3> <p class="ex2">Lorem ipsum est simplement du faux texte</p> </body> </html>