Style External Links with CSS
Styling external links is a common practice on most informational sites likes Wikipedia. As a user, it's nice to know when you're being sent to another resource. Many sites do the external links check on the server side, adding a `rel=external` attribute value or `external` class to external links. In some cases that isn't possible or plausible. After trolling around the interwebs, I found the following useful CSS snippet for styling external links:
/* long version */
a[href^="http://"]:not([href*="mysite.com"]),
a[href^="https://"]:not([href*="mysite.com"]),
a[href^="//"]:not([href*="mysite.com"]), {
}
/* shorter version! */
a[href*="//"]:not([href*="mysite.com"]) {
/* external link styles, use :before or :after if you want! */
}
First you have to qualify the start of the link, then qualify the domain. Internal links wont match and external links wont match the comparison. A useful snippet and something to keep in your library in case you need it!
![CSS 3D Folding Animation]()
Google Plus provides loads of inspiration for front-end developers, especially when it comes to the CSS and JavaScript wonders they create. Last year I duplicated their incredible PhotoStack effect with both MooTools and pure CSS; this time I'm going to duplicate...
![Chris Coyier’s Favorite CodePen Demos]()
David asked me if I'd be up for a guest post picking out some of my favorite Pens from CodePen. A daunting task! There are so many! I managed to pick a few though that have blown me away over the past few months. If you...
![spellcheck Attribute]()
Many useful attributes have been provided to web developers recently: download, placeholder, autofocus, and more. One helpful older attribute is the spellcheck attribute which allows developers to control an elements ability to be spell checked or subject to grammar checks. Simple enough, right?
![Control Element Outline Position with outline-offset]()
I was recently working on a project which featured tables that were keyboard navigable so obviously using cell outlining via traditional tabIndex=0
and element outlines was a big part of allowing the user navigate quickly and intelligently. Unfortunately I ran into a Firefox 3.6 bug...
What if there is a link in my website like http://external.com/?referer=mysite.com ?
You add can another pattern match for whichever referer pattern you use:
Thanks for the snippets :)
David, you can do the same with shorter selector:
Thanks for the code :)
Nice snippets, I love this but how about browser compatibility?
So, what styles are typically used for external websites? A change in font color? Background color?
Is have used this slidely different for my wordpress site:
How to ignore Links With images?
example: http://jsfiddle.net/Ridermansb/NRw97/1/
@Riderman You don’t. CSS is designed to to be applied in one traversal of the DOM tree. This limits it to selectors that are based solemnly on what was before (higher up) in the dom tree. You cannot select on what comes after/deeper in the DOM tree in CSS.
In your example you are trying to style an a element based on the fact, that an img element is deeper in the tree.
Solution: use a css-class for such a elements that should ignore the styling done through the [href=??] matching selectors.
a.no-external-link-style {
/*undo styling through a[href*=”//”]:not([href*=”mysite.com”]) */
}
@Riderman Use JS / jQuery to add a class to links that wrap images, then add a css rule that removes or hides your
:before
, based on that class. I’m using:after
, and FontAwesome..