/*在CSS样式表中,加条线的代码如下所示:*/ text-decoration: line-through;
加条线可以让文字更突出,更有视觉效果。如果你想让文字中间有一条横线,可以使用text-decoration属性,并设置为line-through。
/*将text-decoration设置为line-through后,效果如下:*/ p { text-decoration: line-through; }
当然,除了line-through之外还有其他的取值,比如underline可以将文字下划线。
/*将text-decoration设置为underline后,效果如下:*/ p { text-decoration: underline; }
所以,使用CSS样式表可以实现多种美化效果,其中加条线是一个简单但优雅的选择。