The text-decoration-line
property
control the what type of line the decoration can have.
text-decoration-line: none|underline|overline|line-through
text-decoration-line |
No | No | 6.0 -moz- | No | No |
<!DOCTYPE html>
<html>
<head>
<style>
p {<!-- w w w . ja v a 2s. co m-->
-moz-text-decoration-line: overline; /* Code for Firefox */
text-decoration-line: overline;
}
</style>
</head>
<body>
<p>this is a test.</p>
</body>
</html>