代替
<style> some css code</a>
然后使用
<a href="mylink" class="some class">anchor</a>
我想使用这样的东西:
<a href="mylink" style="something">anchor</a>
那么我将如何将这个 css 转换成这样的形式(东西):
<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>