而不是從CSS轉換爲純HTML
<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>
你不能[使用僞類] (http://stackoverflow.com/questions/5293280/css-pseudo-classes-with-inline-styles)內聯樣式,除了在你的例子中的所有內容。 – Adrift
*爲什麼*你想這樣做? –
你爲什麼要這樣做? – eidsonator