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