CSS 参考手册
CSS content 属性
以下示例将在每个链接后的括号内加上网址
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <style> a:after { content: " (" attr(href) ")"; } </style> </head> <body> <p><a href="https://www.mifengjc.com">mifengjc</a> contains free tutorials and references.</p> <p><b>注意:</b>仅当 !DOCTYPE已经定义 IE8支持 content属性</p> </body> </html>
运行结果:
点击运行 »