External link icon

Show an external icon for ext. links

by Thomas Orthbandt

HTML

<p>Adding external web page icon using css</p>
<a href="http://www.twodesignz.com" target="_blank">My site</a>

CSS

/* Image to the left of URL link 
a[href^="http://"] {
    background: url("http://forums.mozillazine.org/static/kb/images/external.png") no-repeat scroll left center rgba(0, 0, 0, 0);
    padding-left: 13px;
}*/

/* Image to the right of URL link */
a[href^="http://"] {
    background: url("http://forums.mozillazine.org/static/kb/images/external.png") no-repeat scroll right center rgba(0, 0, 0, 0);
    padding-right: 13px;
}

a {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}