CSS 术语:CSS 引号 属性 中的这些值是什么?

CSS Terminology: What are these values called in CSS quotes property?

引号 属性 的以下值的实际术语是什么?我尝试搜索但找不到除 IE CSS hack 之外的任何内容,所以请让我知道术语及其背后的用途,那真的很棒。

blockquote {
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "1C""1D""18""19";
}

根据 W3C 页面:

Specify the quotation marks for quotations

根据 属性 内容的问题,这些是 escaped unicode 个字符。

当您在页面中使用 <blockquote></blockquote> 元素时,您会看到这些引号。

quotes: CSS 允许您用符号替换页面中使用的开引号和闭引号。有关详细信息,请参阅 this reference

The first two values specifies the first level of quotation embedding, the next two values specifies the next level of quote embedding, etc

在您的示例中,他们使用的是 Unicode Character References

这些是 Unicode 字符代码。 如果您想具体了解它们是什么(代码、数字、ID),请参阅:

Wikipedia: Unicode Architecture_and_terminology