其他分享
首页 > 其他分享> > CSS笔记2021.03.20

CSS笔记2021.03.20

作者:互联网

本文仿照pink老师的视频

效果图

在这里插入图片描述

知识点

代码

<!DOCTYPE html>
<html lang="en">
<head>
    <title>Document</title>
    <style>
        a {
            display: block;
            line-height: 40px;
            width: 120px;
            height: line-height;
            color: white;
            background-color: #55585a;
            text-decoration: none;
            text-align: center;
        }

        a:hover {
            background-color: #ff6700;
        }
    </style>
</head>
<body>
    <a href="#">video</a>
    <a href="#">music</a>
    <a href="#">picture</a>
    <a href="#">doc</a>
</body>
</html>

标签:2021.03,hover,20,color,text,height,background,line,CSS
来源: https://blog.csdn.net/xtingjie/article/details/115022677