Code:
<html>
<head>
<style type="text/css">
.redunderline {
color: red;
text-decoration: underline;
}
.blueoverline {
color: blue;
text-decoration:none;
}
</style>
</head>
<body>
<div class="redunderline">
This <b>div</b> has text decoration set to underline,
<span class="blueoverline">but this <b>span</b> has it set to overline.</span>
The <b>div</b> continues here.
</div>
</body>
</html>
Comment