Place an icon next to each link depending on the protocol used in the href attribute of the anchor tag. This way you can mark external links that are secure (through https) for all browsers supporting CSS 2.1 or later.
- a[href^=”https:”]
- {
- display: inline-block;
- padding-right: 14px;
- background: transparent url(Images/SecureLink.gif) center right no-repeat;
- }