gpt4 book ai didi

php - 将鼠标悬停在图像上时文本下划线

转载 作者:太空宇宙 更新时间:2023-11-04 14:42:51 24 4
gpt4 key购买 nike

我正在慢慢了解 php,但需要一些帮助。当您将鼠标悬停在帖子缩略图上时,我希望 .rel 中的 h1 标记带有下划线。有人能给我指出正确的方向吗?

我发现: hover image and text change但没有答案。 Underlining in Javascript?但不确定 jquery 在我的案例中是如何工作的? http://www.kirupa.com/forum/showthread.php?295704-Change-text-hover-when-hovering-over-an-image但是 a href 环绕着图像和文本。

我读过 mouseOver 和 mouseOut 函数,但对这些不熟悉!

我的 php 代码

div id="盒子"

<div class="box">
<div class="rel">
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('homepage-thumb', array('alt' => '', 'title' => '')) ?></a>
<?php if ($mulderamanda_theme_options['images_only'] == 0): ?>

</div>


</div>
</div>

最佳答案

试试下面的 CSS:

.box > .rel > a.thumbnail:hover ~ h1 { text-decoration; underline; }

并添加一个类属性:

<div class="box">
<div class="rel">
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<a class="thumbnail" href="<?php the_permalink(); ?>"><?php the_post_thumbnail('homepage-thumb', array('alt' => '', 'title' => '')) ?></a>
<?php if ($mulderamanda_theme_options['images_only'] == 0): ?>
</div>
</div>

附言:删除了不匹配的 </div> .

关于php - 将鼠标悬停在图像上时文本下划线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18138524/

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