14-文本装饰

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>文本装饰</title>
    <style>
       div{
           /* 下划线 */
           /* text-decoration: underline; */
           /* 删除线 */
           /* text-decoration: line-through; */
           /* 上划线 */
           text-decoration: overline;
       }
        a{
            text-decoration: none;
            color: black;
        }
    </style>
</head>
<body>
    <div>粉红色的回忆</div>
    <a href="#">粉红色的回忆</a>
</body>
</html>

 

posted @ 2021-08-07 17:06  hycsuper  阅读(16)  评论(0)    收藏  举报