gpt4 book ai didi

php - 定位类别 css

转载 作者:搜寻专家 更新时间:2023-10-31 21:31:12 24 4
gpt4 key购买 nike

在 wordpress 中,我的 content.php 中有一篇文章,它根据帖子的 featured-thumbnail 创建了一个图像网格。这段代码将帖子标题 (the_title();) 和类别标题 (the_category(', '))

HTML:

<div class="title-styling">
<a href="<?php the_permalink(); ?>" rel="bookmark"><h1><?php the_title(); ?></h1></a>
<a href="<?php the_permalink(); ?> "><h2><?php the_category(', '); ?></h2></a>
</div>

我想针对 the_category(', ') 文本的 css 属性,例如更改颜色填充等。但我的 CSS 似乎并没有影响它(尤其是颜色),即使 !important 添加。

CSS(尝试失败):

.title-styling > h2 {
color: #fff;
font: 500 15px/10px "Open Sans";
}

.title-styling h2 {
color: #fff;
font: 500 15px/10px "Open Sans";
}

最佳答案

尝试使用以下内容

.title-styling > a > h2.title-category {
color: #fff;
font: 500 15px/10px "Open Sans";
}

如果你想删除 anchor 标记的下划线(链接)[可选]

.title-styling > a {
text-decoration: none;
}

更新:

尝试为 h2 标签指定一个类以更具体地定位它

<div class="title-styling">
<a href="<?php the_permalink(); ?>" rel="bookmark"><h1><?php the_title(); ?></h1></a>
<a href="<?php the_permalink(); ?> "><h2 class="title-category"><?php the_category(', '); ?></h2></a>
</div>

关于php - 定位类别 css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29885786/

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