问题描述
这是否有效使用 q , blockquote 和引用?
<q>Life is what happens when you're busy making other plans</q>
<cite>John Lennon</cite>
或
<blockquote>Life is what happens when you're busy making other plans</blockquote>
<cite>John Lennon</cite>
推荐答案
< q>
q
元素表示从其他来源引用的一些措辞内容。
<q>
The q
element represents some phrasing content quoted from another source.
<p>And then he said <q>I heart HTML5.</q></p>
< cite>
cite
元素代表作品的标题(例如一本书,一本书纸,文章,诗,评分,歌曲,剧本,电影,电视节目,游戏,雕塑,绘画,戏剧制作,戏剧,歌剧,音乐剧,展览,法律案例报告等)。这可以是被引用或详细引用的作品(即引用),也可以是传递中提到的作品。
<cite>
The cite
element represents the title of a work (e.g. a book, a paper, an essay, a poem, a score, a song, a script, a film, a TV show, a game, a sculpture, a painting, a theatre production, a play, an opera, a musical, an exhibition, a legal case report, etc). This can be a work that is being quoted or referenced in detail (i.e. a citation), or it can just be a work that is mentioned in passing.
<p>My favourite book is <cite>Introducing HTML5</cite> by Bruce and Remy.</p>
< blockquote>
blockquote
元素表示从其他来源引用的部分。
blockquote中的内容必须从其他来源引用,其地址(如果有的话)可以在引用属性中引用。
<blockquote>
The blockquote
element represents a section that is quoted from another source. Content inside a blockquote must be quoted from another source, whose address, if it has one, may be cited in the cite attribute.
<blockquote>What we have here is a quotation from another source.</blockquote>
这篇关于有效使用< q>,< blockquote>和< cite>的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!