JSFiddle - React, Tailwind, and code Playground

by cj1406942109

HTML

<!DOCTYPE html>
<html lang="en">

  <head>
    <meta charset="ISO-8859-2">
    <title>Document</title>
  </head>

  <body>
    <h2>标题 1</h2>
    <p>
      <span>西游记</span>的作者是吴承恩。
    </p>
  </body>

</html>

CSS

h2::before {
  content: open-quote;
}
h2::after {
  content: close-quote;
}
p {
  quotes: '“' "”" "《" "》";
}

span::before {
  content: open-quote;
}
span::after {
  content: close-quote;
}