CSS Text Decoration thickness
سماكة خط النصوص في لغة CSS
ستتعلم في هذا الدرس طريقة زخرفة النصوص وتغيير سماكة الخطوط الموجودة أعلي أو أسفل أو خلال النص عن طريق خاصية text-decoration-thickness في لغة CSS.
التاريخ
الدروس
المستوى
اللغة
المشاهدات
المواضيع
CSS Text Decoration thickness
سماكة خط النصوص في لغة CSS
</>
CSS Text Decoration thickness
سماكة خط النصوص في لغة CSS
تًستخدم خاصية text-decoration-thickness للتحكم في ديكور النصوص وهي تعمل جنباً إلي جنب مع خاصية text-decoration-line وتتحكم في سُمك الخطوط التي تكون أعلي أو أسفل أو من خلال النص.
- auto هو الوضع الأفتراضي والمتصفح يختار سُمك الخط.
- length تحديد حجم الخط بوحدة بكسل pixel.
- percentage يتم تكبير حجم الخط بالنسبة المئوية.
- from-font إذا كان ملف الخط يشمل سُمك الخط فأستخدم هذة الخاصية وأذا لم يكن متاح السُمك داخل الملف فأستخدم قيمة auto.
text-decoration-thickness syntax
طريقة كتابة خاصية text-decoration-thickness في لغة CSS.
text-decoration-thickness:value;
value vs value
مقارنة بين قيم خاصية text-decoration-style في لغة CSS.
text-decoration-thickness values
قيم خاصية text-decoration-thickness في لغة CSS.
text-decoration-thickness:auto|from-font|length/percentage|initial|inherit;
</>
CSS Text Decoration thickness auto
خاصية text-decoration-thickness مع القيمة auto في لغة CSS
CSS Text Decoration thickness auto
خاصية text-decoration-thickness مع القيمة auto في لغة CSS.
p { text-decoration-line:underline; text-decoration-color:red; text-decoration-thickness:auto; }
</>
CSS Text Decoration thickness length
خاصية text-decoration-thickness مع القيمة length في لغة CSS
CSS Text Decoration thickness length
خاصية text-decoration-thickness مع القيمة length في لغة CSS.
p { text-decoration-line:underline; text-decoration-color:red; text-decoration-thickness:3px; }
</>
CSS Text Decoration thickness percentage
خاصية text-decoration-thickness مع القيمة percentage في لغة CSS
CSS Text Decoration thickness percentage
خاصية text-decoration-thickness مع القيمة percentage في لغة CSS.
p { text-decoration-line:underline; text-decoration-color:red; text-decoration-thickness:3px; }