Day19综合案例一

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>产品卡片</title>
    <style>
        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body{
            background-color: #f1f1f1;
        }
        .product{
            margin: 50px auto;
            padding-top: 27px;
            background-color: #ffffff;
            width: 187px;
            height: 212px;
            text-align: center;
        }
        .product h4{
            margin-top: 14px;
            margin-bottom: 16px;
            font-size: 12px;
            color: #574459;
            font-weight: 400;
        }
        .product p{
            font-size: 8px;
            color: #8d8a85;
        }
    </style>
</head>
<body>
    <div class="product">
        <img src="../images/抖音直播SDK.png">
        <h4>抖音直播SDK</h4>
        <p>包含抖音直播看播内容</p>
    </div>
</body>
</html>

image

posted @ 2025-11-12 15:15  冰涿  阅读(6)  评论(0)    收藏  举报