Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of attribute selector</title> <style> a[href^="http://"] { background: url("/examples/images/external.png") 100% 50% no-repeat; padding-right: 15px; } </style> </head> <body> <p><a href="http://www.google.com" target="_blank">Google</a></p> </body> </html>