当前位置:网站首页>Action News

Action News

2022-07-05 01:49:00 dengfengling999

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title> News flash </title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }

        li {
            list-style: none;
            /*  Remove all lists li Front origin  */
        }

        .box {
            width: 248px;
            height: 163px;
            border: 1px solid #ccc;

            margin: 100px auto;
            /*  Move the box to the center  */
        }

        .box h3 {
            height: 32px;
            border-bottom: 1px dotted #ccc;
            font-size: 14px;
            font-weight: normal;
            line-height: 32px;
            /*  Center the text vertically , The yield height is equal to the height of the box  */
            padding-left: 15px;
            /*  Won't open the box , because h3 No write width  */
        }

        .box ul li a {
            font-size: 12px;
            color: #666;
            text-decoration: none;
        }

        .box ul li a:hover {
            text-decoration: underline;
        }

        .box ul li {
            height: 23px;
            line-height: 23px;
            /*  Center the text vertically  */
            padding-left: 20px;
        }

        .box ul {
            margin-top: 7px;
        }
    </style>
</head>

<body>
    <div class="box">
        <h3> Pinyougou express </h3>
        <ul>
            <li><a href="#">【 Preferential 】 Popular headphones 5 Folding second !</a></li>
            <li><a href="#">【 Preferential 】 Mother's Day , Good health and good manners are as low as 5 fold !</a></li>
            <li><a href="#">【 Preferential 】9.9 Yuan Xi 100 A picture !</a></li>
            <li><a href="#">【 Preferential 】 Popular headphones 5 Folding second !</a></li>
            <li><a href="#">【 Preferential 】 Changhong intelligent air conditioner sets up a province 1000</a></li>
        </ul>
    </div>
</body>

</html>

result :

When the mouse clicks : 

 

 

原网站

版权声明
本文为[dengfengling999]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/02/202202141011559757.html