<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=s, initial-scale=1.0">
<title>导航条</title>
<link rel="stylesheet" href="./css/reset.css">
<!-- <style>
.nav li{
width: 166px;
height: 48px;
float: left;
line-height: 48px;
text-align: center;
}
.nav li:hover{
background-color: rgba(0, 0, 0, .3);
}
.nav a{
font-weight: bold;
text-decoration: none;
color: #333;
}
</style> -->
<style>
body{
height: 3000px;
}
.nav{
width: 1205px;
height: 48px;
background-color: #E8E7E3;
margin: 100px auto;
/*
粘滞定位(兼容性不是很好)
- 当元素的position属性设置为sticky时,则开启了元素的粘滞定位
- 粘滞定位和相对定位的特点基本一致,不同的是粘滞定位可以在元素到达某一位置时将其固定
*/
position: sticky;
top: 20px;
left: 20px;
}
.nav li{
/* 设置li向左浮动,以使菜单栏横向排列 */
float: left;
/* 设置li的高度 */
height: 48px;
/* 将文字在父元素中垂直居中 */
line-height: 48px;
}
/* 设置a的样式 */
.nav a{
/* 将a转换为块元素 */
display: block;
text-decoration: none;
color: #777777;
font-size: 18px;
padding: 0px 39px;
}
/* 设置鼠标移入的效果 */
.nav a:hover{
background-color: #3f3f3f;
color: #E8E7E3;
}
</style>
</head>
<body>
<!-- 创建导航条的结构 -->
<ul class="nav">
<li>
<a href="#">HTML/CSS</a>
</li>
<li>
<a href="#">Browser Side</a>
</li>
<li>
<a href="#">Server Side</a>
</li>
<li>
<a href="#">Programming</a>
</li>
<li>
<a href="#">XML</a>
</li>
<li>
<a href="#">Web Building</a>
</li>
<li>
<a href="#">Reference</a>
</li>
</ul>
</body>
</html>
06-03
1202
11-28
424
02-23
3255
10-19
515