我有在它2個跨度錨標籤...轉變和應用上的多個元素不同風格的同時
<a class="banner-logo" href="/search"><span id="banner-logo-hello">Hello</span><span id="banner-logo-world">World</span></a>
在此錨標記懸停,我想改變裏面的文字顏色跨越,但我希望他們每個人都是不同的顏色。現在,我一次只能獲得一個跨度。無論錨標籤內部的哪個跨度被徘徊,如何同時發生兩個轉換?
#banner-logo-hello:hover,
#banner-logo-hello:active,
#banner-logo-hello:focus {
color: red;
transition: 0.5s;
}
#banner-logo-world:hover,
#banner-logo-world:active,
#banner-logo-world:focus {
color: yellow;
transition: 0.5s;
}
請分享你的代碼迄今爲[最小,完整,可驗證的示例](http://stackoverflow.com/help/mcve) – michaPau