CSS Text Decoration style
ديكور شكل خطوط النصوص في لغة CSS
ستتعلم في هذا الدرس طريقة زخرفة النصوص وتغيير شكل خطوط أعلي وأسفل وخلال النص عن طريق خاصية text-decoration-style في لغة CSS.
التاريخ
الدروس
المستوى
اللغة
المشاهدات
المواضيع
CSS Text Decoration style
ديكور شكل خطوط النصوص في لغة CSS
</>
CSS Text Decoration style
ديكور شكل خطوط النصوص في لغة CSS
تًستخدم خاصية text-decoration-style للتحكم في ديكور النصوص وهي تعمل جنباً إلي جنب مع خاصية text-decoration-line وتتحكم في شكل الخطوط التي تكون أعلي أو أسفل أو من خلال النص.
- solid هو الوضع الأفتراضي خطوط رفيعة الشكل مستقيمة.
- double تًستخدم لعمل خط النصوص مزدوج.
- dotted تًستخدم لعمل خط النصوص مُنقط.
- dashed تًستخدم لعمل خط النصوص مكون من علامة - dash.
- wavy تًستخدم لعمل خط النصوص مكون أمواج.
text-decoration-line syntax
طريقة كتابة خاصية text-decoration-line في لغة CSS.
text-decoration-style:value;
value vs value
مقارنة بين قيم خاصية text-decoration-style في لغة CSS.
text-decoration-line values
قيم خاصية text-decoration في لغة CSS.
text-decoration-style:solid|double|dotted|dashed|wavy|initial|inherit;
</>
CSS Text Decoration style solid
خاصية text-decoration-style مع القيمة solid في لغة CSS
CSS text decoration style solid
إلغاء الخط من النص بواسطة خاصية text-decoration-style مع القيمة solid في لغة CSS.
CSS text decoration style solid
خاصية text-decoration-style مع القيمة solid في لغة CSS.
p { text-decoration-line:underline; text-decoration-style:solid; text-decoration-color:red; text-decoration-thickness:5px; }
ملاحظة
</>
CSS Text Decoration style double
خاصية text-decoration-style مع القيمة double في لغة CSS
CSS text decoration style double
خاصية text-decoration-style مع القيمة double في لغة CSS.
p { text-decoration-line:underline; text-decoration-style:double; text-decoration-color:red; text-decoration-thickness:5px; }
</>
CSS Text Decoration style dotted
خاصية text-decoration-style مع القيمة dotted في لغة CSS
CSS text decoration style dotted
خاصية text-decoration-style مع القيمة dotted في لغة CSS.
p { text-decoration-line:underline; text-decoration-style:dotted; text-decoration-color:red; text-decoration-thickness:5px; }
</>
CSS Text Decoration style dashed
خاصية text-decoration-style مع القيمة dashed في لغة CSS
CSS text decoration style dashed
خاصية text-decoration-style مع القيمة dashed في لغة CSS.
p { text-decoration-line:underline; text-decoration-style:dashed; text-decoration-color:red; text-decoration-thickness:5px; }
</>
CSS Text Decoration style wavy
خاصية text-decoration-style مع القيمة wavy في لغة CSS
CSS text decoration style wavy
خاصية text-decoration-style مع القيمة wavy في لغة CSS.
p { text-decoration-line:underline; text-decoration-style:dashed; text-decoration-color:red; text-decoration-thickness:5px; }