SOURCE

console 命令行工具 X clear

                    
>
console
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Card</title>
    <style>
        .box {
            height: 450px;
            width: 300px;
            background-color: white;
            border: 1px solid blue;
         }
         .pic {
            height: 400px;
            width: 300px;
            display: block;
            background-repeat: no-repeat;
            margin: auto;
         }
         .text {
            height: 50px;
            width: 300px;
            display: block;
            /* margin: auto; */
            text-align: center;
            border: 1px solid rgb(214, 211, 211);
         }
          span {
              display: block;        
        } 
        .box:hover{
            cursor: pointer;
            box-shadow: 1px 1px 5px 5px gray;
        }
    </style>
</head>
<body>
    <div class="box">
        <img src="https://os.alipayobjects.com/rmsportal/QBnOOoLaAfKPirc.png" class="pic">
        <div class="text">
            <div>
                <span>test</span>
                <a href="baidu.com">
                    www.baidu.com
                </a>
            </div>
            
        </div>
    </div>
</body>
</html>