这是正确的使用Blockquote,q和cite?
<p> <blockquote>Type HTML in the textarea above,<q>and it will magically appear</q> in the frame below. </blockquote> <cite><a href="http://stackoverflow.com">refrence url</a> </p>
是使用Blockquote,q语义正确吗?或两者都是表现元素,所以不应该使用?
解决方法
是。它们不是表示元素 – blockquote表示块引用,q表示内联引号,cite表示对名称,工作,标准,URL等的引用。
你有一些validation errors是相当普遍的blockquote。 blockquote元素不能在段落内,在HTML4中实际上需要包含段落。您的片段中的p和blockquote元素的嵌套需要反转。
blockquote元素(也是q元素)可以可选地具有cite属性以指定引用来自的URI。 HTML5 says用户代理应该使该链接可用于用户,并且HTML4根本不说任何东西。我将包含在cite属性中的URI和作为内联链接,因为浏览器不处理它。
这里是我将写这个片段,与这些修订:
<blockquote cite="http://stackoverflow.com"> <p>Type HTML in the textarea above,<q>and it will magically appear</q> in the frame below.</p> </blockquote> <p> <cite><a href="http://stackoverflow.com">reference url</a></cite> </p>