首页
CSS
CSS 伪元素
尝试:使用 ::after 伪元素
运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> h1::after { content: url(smiley.gif); } </style> </head> <body> <h1>This is a heading</h1> <p>The ::after pseudo-element inserts content after the content of an element.</p> <h1>This is a heading</h1> </body> </html>