Skip to content

Instantly share code, notes, and snippets.

@Alkimisti
Created October 12, 2020 11:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Alkimisti/13807527a22326d42817cad5564844f9 to your computer and use it in GitHub Desktop.
Save Alkimisti/13807527a22326d42817cad5564844f9 to your computer and use it in GitHub Desktop.
text-decoration-style
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS: text-decoration-style</title>
<style>
p {
text-decoration: underline;
text-decoration-color: red;
}
#p1 {
text-decoration-style: solid;
}
#p2 {
text-decoration-style: double;
}
#p3 {
text-decoration-style: dotted;
}
#p4 {
text-decoration-style: dashed;
}
#p5 {
text-decoration-style: wavy;
}
</style>
</head>
<body>
<p id="p1">text-decoration-style: solid</p>
<p id="p2">text-decoration-style: double</p>
<p id="p3">text-decoration-style: dotted</p>
<p id="p4">text-decoration-style: dashed</p>
<p id="p5">text-decoration-style: wavy</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment