style="text-decoration:underline;"是什么意思?
style="text-decoration:underline;" 就是设置文字修饰方式为下划线。
style="text-decoration:除了underline还可以有以下取值:
1、none: 默认值。无装饰
2、blink: 闪烁
3、line-through: 贯穿线
4、overline: 上划线
扩展资料:
text-decoration检索或设置对象中的文本的装饰规则:
有href特性的a,以及u,ins对象默认值为underline。对象strike,s,del,默认值是line-through。
假如none值在属性声明的最后,所有的先前的其他取值都会被清除。例如,声明text-decoration:underline overline blink none等于声明text-decoration:none。假如对象没有文本(如img元素)或者是空元素(如:),此属性不会发生作用。
假如你设置body对象的此属性值为none,a对象将依然保持其原有的下划线样式。除非你针对a对象声明此属性值。指定块对象的此属性将影响其所有内联子对象。而此影响一旦发生,块对象容器最终会受到影响。
在IE4+中可用的值为overline和blink。虽然blink值被提供,但它不会被作用。此属性对于currentStyle对象而言是只读的。对于其他对象而言是可读写的。对应的脚本特性为textDecoration。
示例:div{text-decoration:underline;};div{text-decoration:underlineoverline;}。
参考资料来源:百度百科-text-decoration
其中:
一、style="":这是设置当前html标签的样式;
二、text-decoration:设置文本修饰,它包括以下的值:
1、none:默认。定义标准的文本。
2、underline:定义文本下的一条线。
3、overline:定义文本上的一条线。
4、line-through:定义穿过文本下的一条线。
5、blink:定义闪烁的文本。
6、inherit:规定应该从父元素继承 text-decoration 属性的值。
三、underline:这是text-decoration的值,规定为文本修饰为下划线。
如
h1 {text-decoration:overline}
h2 {text-decoration:line-through}
h3 {text-decoration:underline}
h4 {text-decoration:blink}
可能的值
none 默认。定义标准的文本。
underline 定义文本下划线。
overline 定义文本上划线。
line-through 定义穿过文本下的线。
blink 定义闪烁的文本。
inherit 规定应该从父元素继承 text-decoration 属性的值。
所有主流浏览器都支持 text-decoration 属性。
任何的版本的 Internet Explorer (包括 IE8)都不支持属性值 "inherit"。
IE、Chrome 或 Safari 不支持 "blink" 属性值。