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