CSS Text Decoration Shorthand
خاصية text-decoration في لغة CSS
ستتعلم في هذا الدرس طريقة زخرفة النصوص وتغيير شكل الخطوط وضبط سٌمك الخطوط أعلي أو أسفل أو خلال النص وإختصار جميع الخصائص بخاصية text-decoration في لغة CSS.
التاريخ
04 نوفمبر 2022
الدروس
137
المستوى
مبتدئ
اللغة
انجليزي
المشاهدات
1287
المواضيع
24
CSS Text Decoration Shorthand
خاصية text-decoration في لغة CSS
</>
CSS Text Decoration Shorthand
خاصية text-decoration في لغة CSS
تًستخدم خاصية text-decoration لأختصار جميع الخصائص [ text-decoration-line -text-decoration-color - text-decoration-thickness - text-decoration-line ] بخاصية واحدة فقط لتختصر سطور أوامر CSS في سطر واحد فقط.
الخصائص التي يتم دمجها داخل خاصية text-decoration:
- text-decoration-line
- text-decoration-color
- text-decoration-thickness
- text-decoration-line
text-decoration syntax
طريقة كتابة خاصية text-decoration في لغة CSS.
text-decoration:value;
text-decoration values
قيم خاصية text-decoration في لغة CSS.
text-decoration:text-decoration-line text-decoration-color text-decoration-style text-decoration-thickness|initial|inherit;
ترتيب القيم داخل خاصية text-decoration ليس أمراً هاماً يمكنك ترتيب القيم كيفا شئت وستعمل الخاصية دون حدوث أي مشكلة تقنية.
</>
CSS Text Decoration
خاصية text-decoration في لغة CSS
خاصية text-decoration-line مع خاصية text-decoration-style بقيمة double يكون خط النصوص خط مستقيم مزدوج.
CSS text decoration
خاصية text-decoration في لغة CSS.
p { text-decoration:underline solid red 3px; }