Instead of
<style> some css code</a>
and then using
<a href="mylink" class="some class">anchor</a>
I want to use something like this:
<a href="mylink" style="something">anchor</a>
So how would I convert this css in such a form (something):
<style>
.twitterbird {
margin-bottom: 10px;
width: 160px;
height:160px;
display:block;
background:transparent url('twitterbird.png') center top no-repeat;
}
.twitterbird:hover {
background-image: url('twitterbird_hover.png');
}
</style>