css样式使字母加粗后,某些链接不会显示为粗体

发布于 2024-11-25 22:22:12 字数 367 浏览 0 评论 0原文

我有这个CSS:

.content .chapter_text li a 
{
    color: #7e9940;
    text-decoration: none;
    font-weight: bold;
}

在同一页面上,它有它工作的地方,也有它不起作用的地方。

看一下这里:http://www.comehike.com - 在页面底部,链接出现以粗体文字显示。在页面中间,链接以非粗体文本显示。

但据我所知,它们的风格是一样的。知道为什么主页中间的链接不显示为粗体吗?

谢谢!!

I have this css:

.content .chapter_text li a 
{
    color: #7e9940;
    text-decoration: none;
    font-weight: bold;
}

And on the same page, it has places where it works, and also places where it doesn't work.

Take a look here: http://www.comehike.com - on the bottom of the page, the links appear in bold text. In the middle of the page, the links appear in non-bold text.

But they are styled the same - as far as I can tell. Any idea why the links in the middle of the home page do not appear bold?

Thanks!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

旧伤慢歌 2024-12-02 22:22:12

这是因为中心的那些链接不在 li 中。您可以将 CSS 修改为以下内容以获得想要的结果:

.content .chapter_text a 
{
    color: #7e9940;
    text-decoration: none;
    font-weight: bold;
}

That's because those link in the center are not in a li. You could modify your CSS to the following to get the wanted result:

.content .chapter_text a 
{
    color: #7e9940;
    text-decoration: none;
    font-weight: bold;
}
许你一世情深 2024-12-02 22:22:12

它们不包含在 li 元素中,因此样式不适用。你必须把它们移到一个里或者使它像;

.content .chapter_text li a, .content .chapter_text p a {    
    color: #7e9940;    text-decoration: none;    font-weight: bold;
}

They are not contained in a li element so the style does not apply. You have to move them into a li or make it like;

.content .chapter_text li a, .content .chapter_text p a {    
    color: #7e9940;    text-decoration: none;    font-weight: bold;
}
三岁铭 2024-12-02 22:22:12

页面中间的链接不是 li 元素的子元素,而 li 元素是选择器的目标元素。

The links in the middle of the page are not children of an li element, which is what your selector targets.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文