Despite my efforts to style the text in a specific way, I am puzzled as to why some OTHER text and line 2 are displaying with a red underline effect. I made sure to set the text-decoration to none for both .line2 and .others classes.
I attempted using `text-decoration:none' for both .line2 and .others classes, but the text continued to appear with a red underline.
<html>
<head>
<style type="text/css">
.line {color:red; text-transform:uppercase; text-decoration:underline;}
.line2 {color:blue; text-transform:none;}
.others {color:black; text-transform:lowercase; text-decoration:blink; font-weight:bold;}
</style>
</head>
<body>
<div class='line'>
line 1
<div class='others'><BR>some OTHER text<BR></DIV>
<div class='line2'>
<BR>line 2
</div>
</div>
</body>
</html>