Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

CSS Text Decoration

h1 {
  text-decoration-line: overline;
}

h2 {
  text-decoration-line: line-through;
}

h3 {
  text-decoration-line: underline;
}

p {
  text-decoration-line: overline underline;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #CSS #Text #Decoration
ADD COMMENT
Topic
Name
2+1 =