none、underline、overline、line-through、blink、inherit。
1、text-decoration是none定义默认,text-decoration是underline定义文本下的一条线。对齐方式中text-align是用在css样式里的,范围比较大些,一般针对容器内部对象操作,align对齐方式是一般用在表格td标签里居多。
2、text-decoration是overline定义文本上的一条线,text-decoration是line-through定义文本中间的一条线,text-decoration是blink定义闪烁的文本,IE、Chrome或Safari不支持blink属性值。
3、text-deration是inherit定义从父元素继承text-decoration的值,任何的版本的InternetExplorer都不支持属性值inherit。假如设置body对象的此属性值为none,a对象将依然保持其原有的下划线样式,除非针对a对象声明此属性值。