CSS transitions for psuedo elements

by Ronny

HTML

<h1 title="WTF">WTH?</h1>

CSS

h1:after {content: attr(title); display: block; position: absolute; top: 0; right: 0; color: #000; font-size :32px;}
h1, h1:after { -webkit-transition: all 0.2s linear;}

h1:hover, h1:after:hover {color: red;}