Attribute Substring Selectors
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en'> <head> <title>Attribute Substring Selectors</title> <style type='text/css'> body { font: 14px sans-serif; } h1 { font-size: 16px; } ul { list-style: none; } li { margin: 5px 0; } a { padding-left: 20px; } a[href^="ftp://"] { color: goldenrod; background: url('save.png') no-repeat left center; } a[href*="#"] { color: cadetblue; background: url('anchor.png') no-repeat left center; } a[href$=".html"] { color: dodgerblue; background: url('firefox.png') no-repeat left center; } a[href$=".pdf"] { color: red; background: url('pdf.png') no-repeat left center; } </style> </head> <body> <h1>Attribute Substring Selectors</h1> <ul> <li><a href='index.html'>HTML Page Link</a></li> <li><a href='document.pdf'>PDF Link</a></li> <li><a href='ftp://example.com/'>FTP Link</a></li> <li><a href='http://example.com/#note'>Anchor Link</a></li> </ul> </body> </html>