text-decoration是CSS的一个属性,其作用是给文本装饰上划线、中间线、下划线或不装饰。其值如下所示:
1、none:不装饰任何线。该值是默认值。如下所示:
p{ text-decoration:none; }
结果:
2、overline:给文本装饰上划线。如下所示:
p{ text-decoration:overline; }
结果:
3、line-through:给文本装饰一条中间线,即从中间穿过文本的一条线。如下所示:
p{ text-decoration:line-through; }
结果:
4、underline:给文本装饰一条下划线。如下所示:
p{ text-decoration:underline; }
结果:
时间: 2024-10-22 12:30:41