首页htmlblockquoteHTML Element Style - 如何添加引用到blockquote

HTML Element Style - 如何添加引用到blockquote

我们想知道如何添加引用到blockquote。


<html>

<head>
<style>
blockquote:before {
  content: open-quote;
}

blockquote:after {
  content: close-quote;
}
</style>
</head>

<body>
  <h1>Generated quotes</h1>
  <p>Here are some quotes from Oscar Wilde:</p>

  <blockquote>This is a quote.</blockquote>

  <blockquote>This is a quote.</blockquote>

  <blockquote>This is a quote.</blockquote>
</body>
</html>