Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of CSS3 text-decoration-color Property</title> <style> p { text-decoration: underline; -moz-text-decoration-color: red; /* Firefox */ text-decoration-color: red; /* Standard syntax */ } </style> </head> <body> <p>This is some decoration text.</p> </body> </html>