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;
        }
        li{
            list-style: none;
        }
        a{
            text-decoration: none;
        }
        .new{
            margin: 100px auto;
            height: 351px;
            width: 664px;
            /* background-color: pink; */
        }
        .new .hd{
            height: 64px;
            width: 664px;
            background-color: #f0f0f0;
            border: 1px solid #dbdee1;
        }
        .new .hd a{
            display: block;
            height: 64px;
            width: 88px;
            margin-top: -1px;
            border-top: 5px solid #ff8400;
            border-right: 1px solid #dbdee1;
            background-color: #ffff;
            
            text-align: center;
            line-height: 62px;
            font-size: 25px;
            color: #616160;
        }
        .new .bd{
            padding: 22px;
        }
        .new .bd li{
            background-image: url(../images/黄色正方块.png);  
            padding-left: 19px;
            background-repeat: no-repeat;  
            background-position: 0 center; 
        }
        .new .bd a{
            background: url(../images/黄色样式的图片.png) no-repeat 0 center;
            padding-left: 30px;
            font-size: 17px;
            color: #666;
            line-height: 40px;
        }
        .new .bd li :hover{
                color: #ff8400;
        }
    </style>
</head>
<body>
    <div class="new">
        <div class="hd"><a href="#">新闻</a></div>
        <div class="bd">
            <ul>
                <li><a href="#">点赞 “新农人” 温暖的伸手</a></li>
                <li><a href="#">在希望的田野上</a></li>
                <li><a href="#">中国天眼” 又有新发现 已在《自然》杂志发表</a></li>
                <li><a href="#">急!这个领域,缺人!月薪4万元还不好招!啥情况?</a></li>
                <li><a href="#">G9 “带货” 背后:亏损面持续扩大,竞争环境激烈</a></li>
                <li><a href="#">多地力推二手房 “带押过户”,有什么好处?</a></li>
            </ul>
        </div>
    </div>
</body>
</html>

image

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