CSS3 Attribute Selectors

by RubenKremer

HTML

<link rel="stylesheet" href="http://dryan.com/css3/css/html5-reset.css">
<ul>
    <li><a href="/" title="Home">Home</a></li>
    <li><a href="http://google.com/" title="Google">Google</a></li>
    <li><a title="No HREF">Lege link</a></li>
</ul>

CSS

body { padding: 30px; }

a[href] { font-weight: bold; }

a[href^="http"]:after { content: " →"; }