搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
CSS 教程
CSS 基础教程
源代码
清空
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Example of attribute selector</title> <style> a[href$=".pdf"] { background: url("/run/images/pdf.png") 0 50% no-repeat; padding-left: 20px; } </style> </head> <body> <p><a href="/run/downloads/masters.pdf">Download PDF</a></p> </body> </html>
运行结果