css

39、导航栏

yu
yu
2024-09-30 / 0 评论 / 5 阅读 / 正在检测是否收录...
<!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>导航栏</title>
    <style>
         .nav{
            width: 800px;
            height: 40px;
            background-color:#008080;
            margin:0 auto;
            padding: 0;
        }
        .nav li{
            list-style:none;
            float: left;
            height: 40px;
            line-height: 40px;
            
            }
        .nav a{
            text-decoration:none;
            color: orange;
            font-size: 20px;
            display: block;
           padding: 0px 30px;
            
        }
        .nav a:hover{
            background-color:green;
        }
    </style>
</head>
<body>
    <ul class="nav">
        <li>
            <a href="#">网站首页</a>
        </li>
        <li>
            <a href="#v3">专业教程</a>
        </li>
        <li>
            <a href="#v4">作品展示</a>
        </li>
        <li>
             <a href="#v7">家乡山水</a>
        </li>
    </ul>
</body>
</html>
0

评论 (0)

取消