css为什么字体上是会有一道线

问题遇到的现象和发生背景
问题相关代码,请勿粘贴截图
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style type="text/css">
       * {
           font-family: 微软雅黑;
           font-size: 14px;
           color: black;
       }
       s t{
           color:blue;
           font-weight: bold;
       }
      s{
           color: red;

       }
       s t,#s{
          font-size: 16px;
          text-align: left;
          text-decoration: underline;
       }
       c d{
        color: gray;
        text-decoration: underline;
    }
       c{
           color: green;

       }
    </style>
</head>
```html
<body>
    <s id="s">新浪<t>博客首页——</t>新浪网</s>
   <p>
        <s>新浪网</s>博客频道是全中国最主流,最具人气的博
        客频道。拥有最耀眼的娱<br>乐明星博客,最知性的名人博客
        最动人的情感博客,最自我的草根博客。
   </p>
  <c id="d">blog.sina.com.cn/2014-07-07<d> -百度快照-评价</d></c>
</body>
</html>


###### 运行结果及报错内容
新浪网有横线 

###### 我的解答思路和尝试过的方法 

###### 我想要达到的结果
标题正常,下面内容新浪网三个字变红色
![img](https://img-mid.csdnimg.cn/release/static/image/mid/ask/342278657746171.png "#left")
text-decoration: underline;

把这行代码注释,即可去掉底部直线