當(dāng)前位置:軟件學(xué)堂 > 資訊首頁 > 網(wǎng)絡(luò)編程 > DIV+CSS > CSS實(shí)現(xiàn)簡(jiǎn)單的豎直排列菜單

CSS實(shí)現(xiàn)簡(jiǎn)單的豎直排列菜單

2012/11/26 12:31:26作者:佚名來源:網(wǎng)絡(luò)

移動(dòng)端

【實(shí)例介紹】

CSS實(shí)現(xiàn)簡(jiǎn)單的豎直排列菜單

作為一個(gè)成功的網(wǎng)站,導(dǎo)航菜單是不可缺少的。在傳統(tǒng)的方式下制作導(dǎo)航菜單是很麻煩的工作。使用ul元素、li元素以及CSS屬性變換可以達(dá)到很多意想不到的導(dǎo)航效果。

【實(shí)例代碼】

<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>無標(biāo)題文檔</title> <style> #button { width: 150px; border-right: 1px solid #000; padding: 0 0 1em 0; margin-bottom: 1em; font-family: "宋體"; font-size: 13px; background-color: #FF0099; color: #000000;} #button ul { list-style: none;  margin: 0; padding: 0; border: none;} #button li { margin: 0; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color:#FFFFFF;} #button li a { display: block; padding: 5px 5px 5px 0.5em; background-color: #FF0099; color: #fff; text-decoration: none; width: 100%; border-right-width: 10px; border-left-width: 10px; border-right-style: solid; border-left-style: solid; border-right-color: #ffcc00; border-left-color: #ffcc00;} html>body #button li a { width: auto;} #button li a:hover { background-color: #ffcc00; color: #fff; border-right-width: 10px; border-left-width: 10px; border-right-style: solid; border-left-style: solid; border-right-color: #ff00ff; border-left-color: #ff00ff;} </style> </head> <body> <div id="button"> <ul> <li><a href="#">首頁</a></li> <li><a href="#">公司頻道</a></li> <li><a href="#">最新動(dòng)態(tài)</a></li> <li><a href="#">客房介紹</a></li> <li><a href="#">酒店服務(wù)</a></li> <li><a href="#">休閑娛樂</a></li> <li><a href="#">旅行社</a></li> </ul> </div> </body> </html>

【代碼分析】

這段代碼在body正文部分建立了HTML的基本結(jié)構(gòu),將菜單的各個(gè)項(xiàng)目列表用<ul>表示CSS部分的代碼標(biāo)簽是設(shè)置導(dǎo)航的外觀效果,如圖所示。

簡(jiǎn)單的豎直排列菜單運(yùn)行效果

 【素材及源碼下載】

請(qǐng)點(diǎn)擊:CSS實(shí)現(xiàn)簡(jiǎn)單的豎直排列菜單 下載本實(shí)例相關(guān)素材及源碼

 

標(biāo)簽: CSS  豎直排列  菜單