我可以让 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”)可选,以便用户可以突出显示和复制它?