css超链接导航栏

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>超链接导航栏</title>
    <style>
        body, div, ul, li{padding: 0;margin: 0px;}
        .nav{
            width: 900px;
            background-color: #000000;
            margin: 100px auto;
            overflow: hidden;
            border-radius: 4px;
        }
        .nav ul{
            list-style: none;
            }
        .nav li{
            float:left;
            text-align: center;
            line-height: 40px;
            }
        .nav a{
            text-decoration: none;
            color: #ffffff;
            display: block;
            height: 40px;
            width: 150px;
            }
        .nav a:hover{
            background-color: red;
            font-size: 20px;
            font-weight: bolder;
        }
    </style>
</head>
<body>
<div class="nav">
    <ul>
        <li>
            <a href="">路飞学城</a>
        </li>
        <li>
            <a href="">老男孩</a>
        </li>
        <li>
            <a href="">网站导航</a>
        </li>
        <li>
            <a href="">网站导航</a>
        </li>
        <li>
            <a href="">网站导航</a>
        </li>
        <li>
            <a href="">网站导航</a>
        </li>
    </ul>
</div>

</body>
</html>

 

posted on 2019-07-03 15:07  lilyxiaoyy  阅读(1142)  评论(0编辑  收藏  举报

返回
顶部