gpt4 book ai didi

html - 创建 "navigation breadcrumb"

转载 作者:可可西里 更新时间:2023-11-01 14:56:05 26 4
gpt4 key购买 nike

我想知道如何使用 CSS/CSS3 和 HTML 获得它。如何做到这一点?

enter image description here

如您所见,我指出了 3 个导航面包屑。

最佳答案

<!DOCTYPE html>
<html>

<head>

<style type="text/css">
html{
background:#222;
font-size:12px;
font-family:Arial;
}

ul#breadcrumbs{
list-style:none;
/* optional */
margin:100px;
padding:10px 2px 10px 10px;
background:#000;
width:295px;
height:30px;
border-radius:5px;
border:1px solid #222;
-moz-box-shadow:0 0 3px 0 #000;
}
ul#breadcrumbs li{
float:left;
background:#93ce68 url(bg.png)no-repeat right;
height:30px;
padding:0 23px 0 10px;
text-align:center;
text-decoration:none;
color:#000;
line-height:32px;
}
ul#breadcrumbs li.active{
background:url(bg.png)no-repeat right;
color:#000;
}
ul#breadcrumbs li a{
display:block;
text-decoration:none;
color:#fff;
line-height:32px;
text-shadow:0 0 2px #222;
}
ul#breadcrumbs li a:hover{
color:#a2ff00;
}

</style>

</head>

<body>

<ul id="breadcrumbs">
<li><a href="">Home</a></li>
<li><a href="">Page1</a></li>
<li><a href="">Page2</a></li>
<li class="active">About Us</li>
</ul>



</body>
</html>

enter image description here

将图像保存在 html 的根目录中,并使用 clearfix 为 ul 清除 li 浮点值。如果您使用 CSS 边框技术,可能会在某些浏览器中呈现模糊的边框。希望它能解决您的疑问。

关于html - 创建 "navigation breadcrumb",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8314261/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com