css 文字的下划线、顶划线、删除线

text-decoration:underline;  /*下划线*/

text-decoration:overline; /*顶划线*/

text-decoration:line-through;  /*删除线*/

text-decoration:blink;  /*闪烁  此功能目前只有firefox支持*/

text-decoration:underline line-through;  /*文字不仅有下划线还有删除线;当同时有多个值时,中间用空格分开*/

原文地址:https://www.cnblogs.com/siyecao2010/p/3158706.html