CSS实现简易导航

CSS实现简易导航

  1. 首先搭建html骨架
<!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>
</head>
<body>
    
</body>
</html>
  1. 添加导航内容,使用nav+a实现
<nav>
    <a href="#">Java</a>
    <a href="#">PHP</a>
    <a href="#">Ruby</a>
    <a href="#">Python</a>
</nav>
  1. 添加样式
/* 设置导航栏高度,背景色,边框 */
nav {
    height: 41px;
    background-color: #fcfcfc;
    border-top: 3px solid #ff8500;
    border-bottom: 1px solid #edeef0;
}

/* 超链接修改为行内块元素,左右保持15px填充 */
nav a {
    font-size: 14px;
    color: #4c4c4c;
    text-decoration: none;
    height: 41px;
    line-height: 41px;
    padding: 0 15px;
    display: inline-block;
}

nav a:hover {
    background-color: #ccc;
}
  1. 完整源码
<!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 {
            height: 41px;
            background-color: #fcfcfc;
            border-top: 3px solid #ff8500;
            border-bottom: 1px solid #edeef0;
        }

        nav a {
            font-size: 14px;
            color: #4c4c4c;
            text-decoration: none;
            height: 41px;
            line-height: 41px; /* 行高等于高度使得文字垂直居中 */
            padding: 0 15px;
            display: inline-block;
        }

        nav a:hover {
            background-color: #ccc;
        }
    </style>
</head>
<body>
    <nav>
        <a href="#">首页</a>
        <a href="#">手机新浪网</a>
        <a href="#">网站导航</a>
        <a href="#">李元芳</a>
    </nav>
</body>
</html>
  1. 效果图

    网站导航
    李元芳

```
  1. 效果图

image-20230430091308210

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

快乐江小鱼

知识创造财富,余额还是小数

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值