-6ren">
gpt4 book ai didi

css - 将 h2 和 h3 放在图像顶部是否正确?

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:47:56 25 4
gpt4 key购买 nike

我有几个横幅是网站上的主要类别。我要展示这些图像之上的标题和副标题,目前我使用以下结构:

        <a href="#" title="">

<img src="<?php echo wp_get_attachment_url( get_post_thumbnail_id(1) );?>" alt="xy">
<h3>
<?php $post_title = get_post_custom_values('post_title', 1);
echo $post_title[0];
?>
</h3>
<h2>
<?php $post_subtitle = get_post_custom_values('post_subtitle', 1);
echo $post_subtitle[0];
?>
</h2>
</a>

这是一个好的解决方法吗?这是正确的 html 用法吗?

最佳答案

标题元素不应用于字幕。 From the W3C:

h1–h6 elements must not be used to markup subheadings, subtitles, alternative titles and taglines unless intended to be the heading for a new section or subsection.

关于css - 将 h2 和 h3 放在图像顶部是否正确?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26517894/

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