提示:您可以先修改部分代碼再運行
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>非常酷的css帶說明資訊導覽功能表</title> <style> *{ margin:0; padding:0; list-style:none; font-size:12px; line-height:1.8;} body{ background: #333} #info{padding:50px;} #infobox{padding:0px 20px;background-color: #640000;} #center{background: #ABBAAC; border-top:2px solid #333; padding:20px;} .c{ clear:both; height:1px; overflow: hidden; background:#333} #infobox li{ border-right:1px solid #000; float:left; margin-right:1px; text-align:center;margin-top:-4px; } a{ width:100px;line-height:28px; display:block;} a:link,a:visited{color:#000;background:#FF9900;text-decoration: none;} a:hover,a:active{ color:#FFFF00;background:#000;} /*以是下顯示TIP的內容*/ #infobox span{ display: none; } #infobox a:hover span{display: block;position:absolute;border:1px solid #640000;background: #FFFFCC;margin-top:26px!important; margin-top:20px;color:#000;padding:5px;white-space: nowrap;} </style> </head> <body> <div id="info"> <div id="infobox"> <ul> <li><span>從這裡可以進入標準之路首頁!</span>網站首頁</li> <li><span>專註於網頁特效及廣告代碼!</span>網頁特效</li> <li><span>淘客源碼下載、CMS系統源碼下載!</span>源碼下載</li> <li><span>連結交換平台,發布友情連結交換交易資訊!</span>連結平台</li> <li><span>生活常識網!</span>生活常識</li> <li><span>記得常來哦!</span>您自訂</li> </ul> <div class="c"></div> </div> <div id="center"> </div> </div> </body> </html> </td> </tr></table>
提示:您可以先修改部分代碼再運行