我可以让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”)可选,以便用户突出显示和复制它?
您无法选择伪元素,因为它在DOM中不存在。
伪元素或伪类都不会出现在文档源或文档树中。