小编典典

如何使生成的内容可选?

css

我可以让CSS通过使用生成的内容来显示元素的ID,如下所示:

<style>
h2:hover:after {
  color: grey;
  content: "#" attr(id);
  float: right;
  font-size: smaller;
  font-weight: normal;
}
</style>
<h2 id="my-id">My ID</h2>
<p>Pellentesque habitant morbi tristique senectus et netus et.</p>

如何使生成的内容(“#my-id”)可选,以便用户突出显示和复制它?


阅读 302

收藏
2020-05-16

共1个答案

小编典典

您无法选择伪元素,因为它在DOM中不存在。

伪元素或伪类都不会出现在文档源或文档树中。

2020-05-16