📜  SVG text-decoration 属性

📅  最后修改于: 2021-11-03 10:15:10             🧑  作者: Mango

text-decoration属性定义文本是否带有删除线、上划线和/或下划线。 CSS text-decoration属性和SVG text-decoration属性的主要区别在于,SVG 使用’ fill ‘ 和’ stroke ‘ 值来绘制文本装饰。它仅对以下元素 有效。

句法:

text-decoration = "text-decoration-line" | "text-decoration-style" 
                 | "text-decoration-color"

属性值: text-decoration属性接受上面提到的和下面描述的值

  • text-decoration-line:text-decoration设置为line-throughunderline
  • text-decoration-style:设置用于装饰的线条的样式,例如solidwavydashed
  • text-decoration-color:设置装饰的颜色。

示例 1:下面的示例说明了text-decoration属性的使用。

HTML


  

    

        GeeksforGeeks     

       

        Example for text-decoration="underline"     

                                        GeeksforGeeks                 


HTML


  

    

        GeeksforGeeks     

       

        Example for text-decoration="line-through"     

                                        GeeksforGeeks                 


输出:

示例 2:

HTML



  

    

        GeeksforGeeks     

       

        Example for text-decoration="line-through"     

                                        GeeksforGeeks                 

输出: