HTML <q> 标签


示例

标记一个简短的引用:

<p>WWF's goal is to:
<q>Build a future where people live in harmony with nature.</q>
We hope they succeed.</p>
亲自试一试 »

下面有更多 "亲自试一试" 示例。


定义和用法

这个<q>标签定义一个简短的引用。

浏览器通常在引用两边插入引号。

提示:使用<块引用>对于长报价。


浏览器支持

Element
<q> Yes Yes Yes Yes Yes

属性

Attribute Value Description
cite URL Specifies the source URL of the quote


全局属性

这个<q>标签还支持HTML 中的全局属性


事件属性

这个<q>标签还支持HTML 中的事件属性


更多示例

示例

使用 CSS 设置 <q> 元素的样式:

<html>
<head>
<style>
q {
  color: gray;
  font-style: italic;
}
</style>
</head>
<body>

<p>WWF's goal is to:
<q>Build a future where people live in harmony with nature.</q>
We hope they succeed.</p>

</body>
</html>
亲自试一试 »

相关页面

HTML DOM 参考:报价对象


默认 CSS 设置

大多数浏览器都会显示<q>具有以下默认值的元素:

示例

q {
  display: inline;
}

q:before {
  content: open-quote;
}

q:after {
  content: close-quote;
}
亲自试一试 »