Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は次のHTMLを持っています
<li> <div> <div> .. ... <span class="A">text</span> </div> </div> </li>
CSSを使用してli要素にカーソルを合わせたときにテキストの色を変更するにはどうすればよいですか?
これを試して:
li:hover span.A { color: red; }
例
これでうまくいくはずです:
このような:
li:hover .A { color: red; }
ここに示すように:http: //jsfiddle.net/rZCwr/