Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of attribute selector</title> <style> a[href$=".pdf"] { background: url("/examples/images/pdf.png") 0 50% no-repeat; padding-left: 20px; } </style> </head> <body> <p><a href="/examples/downloads/masters.pdf">Download PDF</a></p> </body> </html>