CLICK H-6ren">
gpt4 book ai didi

php - anchor 标记不适用于 Bootstrap 的图形标记

转载 作者:行者123 更新时间:2023-11-28 16:08:29 27 4
gpt4 key购买 nike

我想在用户点击图片时将他重定向到链接,但 anchor 标记在点击图片时不起作用。但是带有“点击这里”的 anchor 标记有效。

<a href="http://google.com">
<figure class="effect-ming">

<img src="http://example.com/dd.img" alt="Placeholder" />

<figcaption>
<p><?php the_title(); ?></p>
<a href="<?php the_permalink(); ?>">CLICK HERE</a>
</figcaption>
</figure>
</a>

CSS:

figure.effect-ming figcaption::before {
border: 0px solid #fff !important;
bottom: 30px;
box-shadow: 0 0 0 0px rgba(0, 0, 0, 0) !important;
content: "";
left: 30px;
opacity: 0;
position: absolute;
right: 30px;
top: 30px;
transform: scale3d(1.4, 1.4, 1);
transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
}

最佳答案

你需要关闭你的 anchor 标签:

<a href="http://google.com">
<img src="http://example.com/dd.img" alt="Placeholder" />
</a>

<figure class="effect-ming">
<figcaption>
<p><?php the_title(); ?></p>
<a href="<?php the_permalink(); ?>">CLICK HERE</a>
</figcaption>
</figure>

我认为这样会更好。我移动了 figure 标签,因为嵌套不正确。如果你想要图中的图像,你可以这样做:

<figure class="effect-ming">


<a href="http://google.com">
<img src="http://example.com/dd.img" alt="Placeholder" />
</a>

<figcaption>
<p><?php the_title(); ?></p>
<a href="<?php the_permalink(); ?>">CLICK HERE</a>
</figcaption>
</figure>

关于php - anchor 标记不适用于 Bootstrap 的图形标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38722060/

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