English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
تحدد خاصية text-decoration-style CSS نوع الخط المستخدم في الديكور النصي.
ملاحظة: يمكنك أيضًا استخدام خاصية text-decoration لضبط text-decoration-line. هي خاصية مختصرة لـ text-decoration-line، text-decoration-style و text-decoration-color.
الجدول أدناه يوضح استخدام هذه الخاصية والسجلات التاريخية لها، بالإضافة إلى لغة استخدام الخاصية في سكربتات جافا سكريبت.
القيمة الافتراضية: | solid |
---|---|
يُطبق على: | جميع العناصر. يُطبق أيضًا على::first-letter و::first-line. |
继承: | 没有 |
可动画制作: | 否。请参见 动画属性。 |
版本: | CSS3的新功能 |
JavaScript语法: | object.style.textDecorationStyle="wavy" |
该属性的语法如下:
text-decoration-style: [ solid | double | dotted | dashed | wavy ] one or more values | initial | inherit
下面的示例演示了如何使用text-decoration-style属性。
p { text-decoration: underline; -moz-text-decoration-style: dotted; /* Firefox */ text-decoration-style: dotted; }测试看看‹/›
下表描述了此属性的值。
值 | 描述 |
---|---|
solid | 该线显示为实线。这是默认值。 |
double | 该线显示为双线。 |
dotted | 该线显示为虚线。 |
dashed | 该线显示为虚线。 |
wavy | 该线显示为波浪线。 |
initial | 将此属性设置为其默认值。 |
inherit | 如果指定,则关联元素采用其父元素text-decoration-style的属性值。 |
text-decoration-style大多数浏览器均不支持该属性。
|
警告:text-decoration-style大多数浏览器当前不支持该属性。您最好避免使用此属性。
相关属性:text-decoration,text-decoration-line,text-decoration-color。