The text-decoration-style
property controls how to display
line for decoration.
text-decoration-style: solid|double|dotted|dashed|wavy
text-decoration-style |
No | No | 6.0 -moz- | No | No |
<!DOCTYPE html>
<html>
<head>
<style>
p {<!--from w w w . j a v a 2 s.c o m-->
text-decoration: underline;
-moz-text-decoration-style: wavy; /* Code for Firefox */
text-decoration-style: wavy;
}
</style>
</head>
<body>
<p>this is a test</p>
</body>
</html>