gpt4 book ai didi

html - CSS breadcrumbs 帮助格式化字体

转载 作者:行者123 更新时间:2023-11-28 16:44:18 24 4
gpt4 key购买 nike

我在更改同一个 DIV 标签的字体颜色装饰等方面遇到了一些困难。

我想做的是在我网站的某些页面上进行面包屑式导航,我想尽量减少我使用的 Div 数量,以便于维护。

这是我已经拥有并想做的事情。

 <div id="product-breadcrumbs">
<div id="breadcrumbs">(Link and color) // (another link and another color)
</div>
</div>

CSS

 #product-breadcrumbs {
position: absolute;
left: 0px;
top: 66px;
width: 1024px;
height: 34px;
background-color: #E7E5F2;
}

#breadcrumbs {
position: relative;
padding-top: 7px;
padding-bottom: 7px;
text-align: left;
text-indent: 140px;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: bold;
color: #09C;
text-decoration: none;
}

最佳答案

编辑:重读你的问题(你是对的,我确实读错了)。您可以通过为您的链接提供类来完成此操作,不是吗?

 <div id="product-breadcrumbs">
<div id="breadcrumbs">
<a href="#" class="colorOne">A link</a>
<a href="#" class="colorTwo">Another link</a>
</div>
</div>

使用以下 CSS:

 #breadcrumbs a.colorOne {
color: black;
}
#breadcrumbs a.colorTwo {
color: blue;
}

关于html - CSS breadcrumbs 帮助格式化字体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15486885/

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