首页htmlquotesCSS Property Value - 如何quotes: "mark""mark";

CSS Property Value - 如何quotes: "mark""mark";

我们想知道如何quotes: "mark""mark";

<!DOCTYPE html>
<html lang="en">
<head>
<title>Example of CSS :lang Pseudo-class</title>
<style type="text/css">
q:lang(no) {
  quotes: "~" "~";
}
</style>
</head>
<body>
  <p>
    Some text <q lang="no">A quote in a paragraph</q> Some text.
  </p>
</body>
</html>