欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

css導(dǎo)航欄固定網(wǎng)頁(yè)跳轉(zhuǎn)

老白2年前11瀏覽0評(píng)論

在網(wǎng)頁(yè)設(shè)計(jì)中,導(dǎo)航欄是一個(gè)非常重要的部分。而固定導(dǎo)航欄可以讓用戶(hù)無(wú)論在哪個(gè)位置時(shí)都能夠快速訪(fǎng)問(wèn)到網(wǎng)站的其他頁(yè)面。本文將介紹如何使用CSS實(shí)現(xiàn)導(dǎo)航欄固定網(wǎng)頁(yè)跳轉(zhuǎn)。

/*固定導(dǎo)航欄*/
.navbar{
position:fixed;
top:0;
left:0;
right:0;
z-index:99;
background-color:#ffffff;
box-shadow:0 0 5px rgba(0,0,0,.1);
}
/*導(dǎo)航欄列表樣式*/
.nav_list{
float:right;
margin-right:20px;
}
.nav_list li{
float:left;
list-style:none;
margin-left:10px;
}
.nav_list li a{
text-decoration:none;
color:#333;
font-size:18px;
font-weight:bold;
}
/*當(dāng)前頁(yè)面高亮標(biāo)記*/
.current_page{
border-bottom:2px solid #f00;
}
/*html*/
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<nav class="navbar">
<ul class="nav_list">
<li><a href="index.html" class="current_page">首頁(yè)</a></li>
<li><a href="about.html">關(guān)于我們</a></li>
<li><a href="service.html">服務(wù)項(xiàng)目</a></li>
<li><a href="contact.html">聯(lián)系我們</a></li>
</ul>
</nav>
</body>
</html>

以上代碼會(huì)將網(wǎng)頁(yè)頂部的導(dǎo)航欄固定,使得用戶(hù)無(wú)論滾動(dòng)到哪個(gè)位置都能夠訪(fǎng)問(wèn)網(wǎng)站的其他頁(yè)面。同時(shí),在當(dāng)前所在頁(yè)面的導(dǎo)航欄選項(xiàng)會(huì)高亮標(biāo)記,讓用戶(hù)更加方便地了解自己所在的頁(yè)面。

總之,使用CSS實(shí)現(xiàn)導(dǎo)航欄固定網(wǎng)頁(yè)跳轉(zhuǎn)是非常簡(jiǎn)單的。只需幾行代碼就可以讓用戶(hù)高效地訪(fǎng)問(wèn)你的網(wǎng)站。希望這篇文章對(duì)你有所幫助!