91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何編寫CSS代碼應實現導航欄

發布時間:2021-09-29 15:32:38 來源:億速云 閱讀:145 作者:iii 欄目:web開發

本篇內容主要講解“如何編寫CSS代碼應實現導航欄”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“如何編寫CSS代碼應實現導航欄”吧!

  方法一,

  說明:本方法使用CSS3,無圖片,兼容各種webkit系瀏覽器,同時兼容。先上圖:

  1.首先是HTML代碼,比較簡單,只需要一個簡單的ul和li即可代碼如下:

如何編寫CSS代碼應實現導航欄    

代碼如下:

<div id="crumbs">
<ul>
<li><a href="#">首頁</a></li>
<li><a href="#">目錄</a></li>
<li><a href="#">子目錄</a></li>
</ul>
<div class="fixed"></div>
</div>

  2.接下來是CSS代碼,首先是設定常規的li浮動和a標簽美化:

代碼如下:

#crumbs ul li {
float: left;
list-style: none;
}
#crumbs ul li a {
display: block;
float: left;
height: 34px;
background: #f66fa2;
text-align: center;
padding: 10px 20px 0 45px;
position: relative;
margin: 0 10px 0 0;
font-size: 20px;
text-decoration: none;
color: #fff;
}

  接下來就是面包屑導航的關鍵地方,通過before和after來創建箭頭效果:

代碼如下:

#crumbs ul li a:after {
content: "";
border-top: 22px solid transparent;
border-bottom: 22px solid transparent;
border-left: 22px solid #f66fa2;
position: absolute; right: -22px; top: 0;
z-index: 1;
}
#crumbs ul li a:before {
content: "";
border-top: 22px solid transparent;
border-bottom: 22px solid transparent;
border-left: 22px solid #fff;
position: absolute; left: 0; top: 0;
}
#crumbs ul li:first-child a {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
padding-left: 40px;
}
#crumbs ul li:first-child a:before {
display: none;
}
#crumbs ul li:last-child a {
padding-right: 30px;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
#crumbs ul li:last-child a:after {
display: none;
}
#crumbs ul li a:hover {
background: #e56592;
transition: all 0.2s ease;
}
#crumbs ul li a:hover:after {
border-left-color: #e56592;
transition: all 0.2s ease;
}

  最后清除浮動:

代碼如下:

.fixed {
clear: both;
}

  方法二:

XML/HTML Code復制內容到剪貼板

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.neiyidaogou.com/TR/xhtml1/DTD/xhtml1-transitional.dtd">  

  2. <html xmlns="http://www.neiyidaogou.com/1999/xhtml">  

  3. <head>  

  4. <meta http-equiv="Content-Type" content="text/html; charset="utf-8&Prime; />  

  5. <title>純css制作面包屑,兼容IE6</title>  

  6. <style type="text/css">  

  7. *{margin:0;padding:0;list-style-type:none;}   

  8. a,img{border:0;}   

  9. body{font:12px/180% Arial, Helvetica, sans-serif, "新宋體";}   

  10. /* demo */   

  11. .demo{width:600px;margin:100px auto;background:#f0f0f0;position:relative;}   

  12. .demo ul{height:32px;overflow:hidden;}   

  13. .demo li{float:left;width:200px;text-align:center;position:relative;z-index:2;font-weight:bold;font-size:14px;line-height:32px;}   

  14. .demo li em{position:absolute;right:-24px;top:-8px;width:0;height:0;line-height:0;border-width:24px 0 24px 24px;border-color:transparent transparent transparent #fff;border-style:dashed dashed dashed solid;}   

  15. .demo li i{position:absolute;right:-16px;top:0;width:0;height:0;line-height:0;border-width:16px 0 16px 16px;border-color:transparent transparent transparent #f0f0f0;border-style:dashed dashed dashed solid;}   

  16. .demo li.current{background:#f60;color:#fff;z-index:1;}   

  17. .demo li.current i{border-color:transparent transparent transparent #f60;}   

  18. </style>  

  19. </head>  

  20. <body>  

  21. <div class="demo">  

  22. <ul class="clearfix">  

  23. <li>面包屑一<em></em><i></i></li>  

  24. <li class="current">面包屑二<em></em><i></i></li>  

  25. <li>面包屑二<em></em><i></i></li>  

  26. </ul>  

  27. </div>  

  28. </body>  

  29. </html>  

到此,相信大家對“如何編寫CSS代碼應實現導航欄”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

css
AI

巨鹿县| 绥滨县| 石阡县| 元氏县| 杭锦后旗| 固阳县| 闵行区| 扎鲁特旗| 威远县| 邓州市| 布尔津县| 阳朔县| 龙胜| 福鼎市| 潜江市| 巴彦淖尔市| 聊城市| 富源县| 隆德县| 崇信县| 阿克陶县| 翁牛特旗| 漳平市| 郑州市| 大庆市| 临海市| 磐石市| 乌恰县| 长宁县| 邵阳市| 长海县| 房山区| 桐梓县| 抚远县| 尉犁县| 龙口市| 城步| 凯里市| 万荣县| 天等县| 连南|