- CSS 教程
- CSS - 教程
- CSS - 简介
- CSS - 语法
- CSS - 选择器
- CSS - 包含
- CSS - 度量单位
- CSS - 颜色
- CSS - 背景
- CSS - 字体
- CSS - 文本
- CSS - 图像
- CSS - 链接
- CSS - 表格
- CSS - 边框
- CSS - border-block 属性
- CSS - 边框内联
- CSS - 边距
- CSS - 列表
- CSS - Padding 属性
- CSS - 光标
- CSS - 轮廓
- CSS - 维度
- CSS - 滚动条
- CSS - 内联块
- CSS - 下拉列表
- CSS - visibility 属性
- CSS - Overflow 属性
- CSS - 清除修复
- CSS - float(浮点)
- CSS - 箭头
- CSS - resize 属性
- CSS - quotes 属性
- CSS - order 属性
- CSS - Position 属性
- CSS - hypens 属性
- CSS - :hover(悬停)
- CSS - display(显示)
- CSS - focus 属性
- CSS - zoom(缩放)
- CSS - translate 属性
- CSS - Height 属性
- CSS - hyphenate-character 属性
- CSS - Width 属性
- CSS - opacity 属性
- CSS - z-index 属性
- CSS - bottom 属性
- CSS - 导航栏
- CSS - 覆盖
- CSS - 表单
- CSS - 对齐
- CSS - 图标
- CSS - 图片库
- CSS - 注释
- CSS - 加载器
- CSS - Atrribute 选择器属性
- CSS - 运算器
- CSS - root
- CSS - 盒子模型
- CSS - 计数器
- CSS - Clip (Obsolete) 属性
- CSS - writing-mode 属性
- CSS - Unicode-bidi 属性
- CSS - min-content 属性
- CSS - 全部
- CSS - inset 属性
- CSS - isolation 属性
- CSS - overscroll-behavior 属性
- CSS - justify-items 属性
- CSS - justify-self 属性
- CSS - tab-size 属性
- CSS - pointer-event 属性
- CSS - place-content 属性
- CSS - place-items 属性
- CSS - place-self 属性
- CSS - max-block-size 属性
- CSS - min-block-size 属性
- CSS - mix-blend-mode 属性
- CSS - max-inline-size 属性
- CSS - min-inline-size 属性
- CSS - offset 属性
- CSS - accent-color 属性
- CSS - user-select 属性
- CSS 高级
- CSS - grid 属性
- CSS - Grid 布局
- CSS - flexbox
- CSS - vertical-align 属性
- css - positioning
- css - layers
- css - pseudo_classes
- CSS - 伪元素
- CSS - @ 规则
- CSS 滤镜 - text-effect 属性
- CSS 分页媒体
- CSS 打印
- CSS - 布局
- CSS - 验证
- CSS - 图像精灵
- CSS - !important
- CSS - 数据类型
- CSS3 教程
- CSS - 圆角
- CSS - 边框图像
- CSS - 多种背景
- CSS - 渐变
- CSS - box-shadow 属性
- CSS - box-decoration-break 属性
- CSS - caret-color 属性
- CSS - text-shadow 属性
- CSS - 2D 转换
- CSS - 3D 变换
- CSS - transition 属性
- CSS - 动画
- CSS - 多列布局
- CSS - 盒子大小调整
- CSS - 工具提示
- CSS - buttons
- CSS - 分页
- CSS - 变量
- CSS - 媒体查询
- CSS - 值函数
- CSS - 数学函数
- CSS - Mask 属性
- CSS - shape-outside 属性
- CSS - 样式图像
- CSS - 特异性
- CSS - 自定义属性
- CSS 响应式
- CSS - 响应式网页设计 (RWD)
- CSS - 响应式设计视口
- CSS - 响应式网格视图
- CSS - 响应式媒体查询
- CSS - 响应式图像
- CSS - 响应式视频
- CSS - 响应式框架
- CSS 引用
- CSS - 所有属性列表
- CSS - 颜色引用
- CSS - 浏览器支持参考
- CSS - 网页字体
- CSS 工具
- CSS - PX 到 EM 的转换
CSS - 导航栏
导航栏是图形用户界面 (GUI) 的一部分,可帮助用户浏览网站、应用程序或其他软件。对于用户来说,快速轻松地导航到他们正在寻找的内容至关重要。
导航栏可以是水平的或垂直的,其中包含指向重要页面或功能的链接。
导航栏还可以包含其他元素,例如网站或应用程序的徽标、搜索栏或社交媒体图标。可以使用 CSS 来设置导航栏的样式以更改其外观。
CSS 水平导航栏
以下示例显示了一个水平导航栏,这是显示在网页顶部的最常见导航栏类型,如下所示 -
<html>
<head>
<style>
ul {
background-color: #28bf17;
overflow: hidden;
list-style-type: none;
margin: 0;
padding: 0;
}
li {
float: left;
}
li a {
display: block;
color: #f2f2f2;
text-align: center;
padding: 10px;
text-decoration: none;
font-size: 17px;
}
li a:hover {
background-color: #dd9ede;
color: black;
}
.active-link {
background-color: #f53319;
color: white;
}
</style>
</head>
<body>
<ul>
<li><a href="#" class="active-link">Tutorialspoint</a></li>
<li><a href="#">Home</a></li>
<li><a href="#">Articles</a></li>
<li><a href="#">Courses</a></li>
<li><a href="#">eBook</a></li>
</ul>
<h1>Welcome to TutorialsPoint</h1>
<h3>Simple Easy Learning at your fingertips</h3>
</body>
</html>
CSS 垂直导航栏
垂直导航栏也称为侧边栏菜单。它通常位于屏幕的左侧或右侧。
这是一个例子 -
<html>
<head>
<style>
ul {
background-color: #28bf17;
list-style-type: none;
margin: 0;
padding: 0;
width: 200px;
}
li {
text-align: center;
}
li a {
display: block;
color: #f2f2f2;
text-align: center;
padding: 10px;
text-decoration: none;
font-size: 17px;
}
li a:hover {
background-color: #dd9ede;
color: black;
}
.active-link {
background-color: #f53319;
color: white;
}
</style>
</head>
<body>
<ul>
<li><a href="#" class="active-link">Tutorialspoint</a></li>
<li><a href="#">Home</a></li>
<li><a href="#">Articles</a></li>
<li><a href="#">Courses</a></li>
<li><a href="#">eBook</a></li>
</ul>
</body>
</html>
CSS 下拉导航栏
下拉导航栏是一个带有下拉菜单的导航栏,当用户将鼠标悬停在链接上时,将显示该菜单。下拉菜单是一种在小空间中显示相关项目列表的方法。
这是一个例子 -
<html>
<head>
<style>
.navbar {
background-color: #28bf17;
overflow: hidden;
}
.navbar a {
display: block;
float: left;
color: #f2f2f2;
text-align: center;
padding: 10px;
text-decoration: none;
font-size: 15px;
}
.navbar a:hover {
background-color: #dd9ede;
color: black;
}
.active-link {
background-color: #f53319;
color: white;
}
.dropdown {
float: left;
}
.dropdown .dropbtn {
border: none;
color: #f2f2f2;
padding: 10px;
background-color: #28bf17;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #c7385a;
min-width: 120px;
}
.dropdown-content a {
float: none;
color: #f2f2f2;
padding: 10px;
display: block;
text-align: left;
}
.dropdown-content a:hover {
background-color: #dd9ede;
color: black;
}
.dropdown:hover .dropdown-content {
display: block;
}
</style>
</head>
<body>
<nav class="navbar">
<a href="#" class="active-link">Tutorialspoint</a>
<a href="#">Home</a>
<div class="dropdown">
<button class="dropbtn">Articles</button>
<div class="dropdown-content">
<a href="#">HTML</a>
<a href="#">CSS</a>
<a href="#">Bootstrap</a>
</div>
</div>
<a href="#">Courses</a>
<a href="#">eBook</a>
</nav>
<h1>Welcome to TutorialsPoint</h1>
<h3>Simple Easy Learning at your fingertips</h3>
</body>
</html>
CSS 固定导航栏
固定导航栏是一个导航栏,当用户向下滚动页面时,它会粘在屏幕顶部。要使导航栏固定,您可以使用 position: fixed 属性。
这是一个例子 -
<html>
<head>
<style>
body {
margin: 0;
}
.navbar {
position: fixed;
top: 0;
width: 100%;
margin: 0;
padding: 0px;
overflow: hidden;
background-color: #28bf17;
}
.navbar a {
display: block;
float: left;
color: #f2f2f2;
text-align: center;
padding: 10px;
text-decoration: none;
font-size: 17px;
}
.navbar a:hover {
background-color: #dd9ede;
color: black;
}
.active-link {
background-color: #f53319;
color: white;
}
.heading {
padding-top: 170px;
text-align: center;
background-color: #e6e451;
padding-bottom: 300px
}
</style>
</head>
<body>
<nav class="navbar">
<a href="#" class="active-link">Tutorialspoint</a>
<a href="#">Home</a>
<a href="#">Articles</a>
<a href="#">Courses</a>
<a href="#">eBook</a>
</nav>
<div class="heading">
<h1>Welcome to TutorialsPoint</h1>
<h2>Tutorialspoint CSS Fixed Navbar</h2>
<h3>Simple Easy Learning at your fingertips</h3>
</div>
</body>
</html>
CSS 粘性导航栏
您可以使用 position: sticky 属性来创建一个粘性导航栏,即使用户向下滚动页面,该导航栏也会保持在屏幕顶部。
这是一个例子 -
<html>
<head>
<style>
body {
margin: 0;
}
.navbar {
position:sticky;
top: 0;
width: 100%;
margin: 0;
padding: 0px;
overflow: hidden;
background-color: #28bf17;
}
.navbar a {
display: block;
float: left;
color: #f2f2f2;
text-align: center;
padding: 10px;
text-decoration: none;
font-size: 17px;
}
.navbar a:hover {
background-color: #dd9ede;
color: black;
}
.active-link {
background-color: #f53319;
color: white;
}
.heading {
padding-top: 170px;
text-align: center;
background-color: #e6e451;
padding-bottom: 300px
}
h2 {
text-align: center;
}
</style>
</head>
<body>
<h2>Scroll down to see the effect</h1>
<nav class="navbar">
<a href="#" class="active-link">Tutorialspoint</a>
<a href="#">Home</a>
<a href="#">Articles</a>
<a href="#">Courses</a>
<a href="#">eBook</a>
</nav>
<div class="heading">
<h1>Welcome to TutorialsPoint</h1>
<h2>Tutorialspoint CSS Sticky Navbar</h2>
<h3>Simple Easy Learning at your fingertips</h3>
</div>
</body>
</html>
导航栏的分隔线
您还可以使用 border-right 属性在导航栏中的链接之间添加一条分隔线,如下所示 -
<html>
<head>
<style>
.navbar {
background-color: #28bf17;
overflow: hidden;
}
.navbar a {
display: block;
float: left;
color: #f2f2f2;
text-align: center;
padding: 10px;
text-decoration: none;
font-size: 17px;
border-right: 2px solid #f013c8;
}
.navbar a:hover {
background-color: #dd9ede;
color: black;
}
.active-link {
background-color: #f53319;
color: white;
}
</style>
</head>
<body>
<nav class="navbar">
<a href="#" class="active-link">Tutorialspoint</a>
<a href="#">Home</a>
<a href="#">Articles</a>
<a href="#">Courses</a>
<a href="#">eBook</a>
</nav>
<h1>Welcome to TutorialsPoint</h1>
<h2>Tutorialspoint CSS Navbar with borders</h2>
</body>
</html>
固定垂直导航栏
以下示例演示如何使用 position: fixed 属性创建固定的垂直导航栏,该导航栏可确保导航栏保持在屏幕的左侧,即使用户向下滚动页面也是如此。
<html>
<head>
<style>
ul {
position: fixed;
background-color: #28bf17;
list-style-type: none;
margin: 0;
padding: 0;
width: 200px;
height: 100%;
}
li {
text-align: center;
border-bottom: 2px solid #f013c8;
}
li a {
display: block;
color: #f2f2f2;
text-align: center;
padding: 10px;
text-decoration: none;
font-size: 17px;
}
li a:hover {
background-color: #dd9ede;
color: black;
}
.active-link {
background-color: #f53319;
color: white;
}
.heading {
padding-top: 170px;
text-align: center;
background-color: #e6e451;
padding-bottom: 300px
}
</style>
</head>
<body>
<ul>
<li><a href="#" class="active-link">Tutorialspoint</a></li>
<li><a href="#">Home</a></li>
<li><a href="#">Articles</a></li>
<li><a href="#">Courses</a></li>
<li><a href="#">eBook</a></li>
</ul>
<div class="heading">
<h1>Welcome to TutorialsPoint</h1>
<h2>Tutorialspoint CSS Fixed Vertical Navbar</h2>
<h3>Simple Easy Learning at your fingertips</h3>
</div>
</body>
</html>