“正确”的方式来标记HTML中的推荐

前端之家收集整理的这篇文章主要介绍了“正确”的方式来标记HTML中的推荐前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我认为这是一个很容易找到在线的东西,但似乎没有.我试图找出什么将被认为是正确的方式来标记一个名单的评价 – 作者的报价 – 在页面上.

例如

“This is what I think”
– My Name,My Company

我会想象报价应该在一个blockquote.我也看到一些使用引用来显示报价来自哪里,但是HTML引用似乎表明这应该被用来给出引用来自哪个网页的URL,而不是该人的名字.

有没有人有什么建议,应该如何标记

解决方法

我可能会迟到,但我认为以下是标记证明的正确方法
<figure>
    <blockquote>
        "This is what I think"
    </blockquote>
    <footer>
        — <cite class="author">My Name</cite>,<cite class="company">My Company</cite>
    </footer>
</figure>

根据W3C规范:

…the citation is contained within the footer of a figure element,this groups and associates the information,about the quote,with the quote…

.

.

.

The figure element represents some flow content,optionally with a caption,that is self-contained (like a complete sentence)…

原文链接:https://www.f2er.com/html/231335.html

猜你在找的HTML相关文章