HTML 标签列表

HTML <blockquote>引用标签

HTML <blockquote> 标签用于定义从另一个来源引用的文本块。浏览器通常将 <blockquote> 标签内的内容显示为缩进文本。

如果要插入长引号,请使用 <blockquote> 并使用 <q> 标记插入短引号或内联引号。

句法

<blockquote> 引用文本......</blockquote>

以下是关于 <blockquote> 标签的一些规范

展示堵塞
开始标签/结束标签开始和结束标签
用法语义/文本

例子

<!DOCTYPE html>  
<html>  
<head>  
    <title>Blockquote tag</title>  
</head>  
<body>  
    <h2>Example of blockquote tag</h2>  
    <p>A Great Motivational Quote :</p>  
   <blockquote cite="https://www.brainyquote.com/authors/erin_cummings";>  
    <p>  
     At the end of the day, you are solely responsible for your success and your failure. And the sooner you realize that, you accept that, and integrate that into your work ethic, you will start being successful. As long as you blame others for the reason you aren't where you want to be, you will always be a failure.  
     </p>  
   </blockquote>  
<cite>Erin Cummings</cite>  
</body>  
</html>

输出:

HTML 块引用标记

样式 <blockquote> 标签

<!DOCTYPE html>  
<html>  
<head>  
    <title>Blockquote tag</title>  
   <style>  
    blockquote{  
        text-align: justify;  
        background-color: #F7EAE9;  
                           border-radius: 4px;  
                           margin-right: 25px;}  
    cite{  
      margin-left: 15px;}  
   </style>  
</head>  
<body>  
    <h2>Example of blockquote tag</h2>  
    <p>A Great Motivational Quote:</p>  
   <blockquote cite="https://www.brainyquote.com/authors/erin_cummings";>  
    <p>  
     At the end of the day, you are solely responsible for your success and your failure. And the sooner you realize that, you accept that, and integrate that into your work ethic, you will start being successful. As long as you blame others for the reason you aren't where you want to be, you will always be a failure.  
     </p>  
   </blockquote>  
<cite>-Erin Cummings</cite>  
</body>  
</html>

注意:我们使用 CSS 属性 margin-right: 25px 来更改应用于文本的缩进。您还可以使用 margin-left 或 margin 速记属性。

输出:

HTML 块引用标记

属性

标签特定属性

属性价值描述
引用HTML 块引用标记网址它用于指定引用来源的 URL。

全局属性

<blockquote> 标签支持 HTML 中的所有全局属性。

事件属性

<blockquote> 标签支持 HTML 中的所有事件属性。

支持浏览器

元素ChromeIEFirefoxSafariOpera
<blockquote>YesYesYesYesYes


上一主题 HTML <big>大标签 下一主题 HTML <body> 标签
  • 使用社交账号登录,本站支持
全部评论(0)