الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> .overline { text-decoration-line: overline; text-decoration-color: pruple; } .underline { text-decoration-line: underline; text-decoration-color: red; } .line-through { text-decoration-line: line-through; text-decoration-color: blue; } .over-and-under-line { text-decoration-line: overline underline; text-decoration-color: gray; } </style> </head> <body> <h1>CSS text-decoration-color</h1> <a class="overline">line over text.</a> <p class="underline">line under text.</p> <p class="line-through">line through text.</p> <p class="over-and-under-line">line over and under text.</p> </body> </html>