CSS側(cè)邊導(dǎo)航欄是一種常用的網(wǎng)頁(yè)導(dǎo)航方式,我們可以使用CSS技術(shù)輕松創(chuàng)建出漂亮的側(cè)邊欄,來實(shí)現(xiàn)網(wǎng)頁(yè)的高效導(dǎo)航。
.sidebar { position: fixed; top: 0; left: 0; width: 200px; height: 100%; background-color: #333; color: #fff; } .sidebar ul { list-style: none; margin: 0; padding: 0; } .sidebar li { font-size: 18px; line-height: 40px; text-align: center; } .sidebar a { display: block; color: #fff; text-decoration: none; transition: all 0.3s ease; } .sidebar a:hover { background-color: #555; }
代碼中,我們首先創(chuàng)建一個(gè)名為“sidebar”的CSS類,并將其設(shè)置為固定位置,寬度為200像素,高度為100%。接著,我們定義了一個(gè)無序列表,并將其內(nèi)邊距和外邊距都設(shè)置為0,將列表項(xiàng)設(shè)置為居中對(duì)齊。我們還為導(dǎo)航鏈接定義了文字顏色、背景顏色和鼠標(biāo)懸停效果。
使用上述代碼,我們可以創(chuàng)建一個(gè)基礎(chǔ)的側(cè)邊導(dǎo)航欄,你可以根據(jù)自己的需求,進(jìn)一步定制樣式和內(nèi)容。比如,你可以添加圖標(biāo)、子菜單、選中狀態(tài)等等。希望這篇文章可以幫助你了解如何使用CSS創(chuàng)建側(cè)邊導(dǎo)航欄。