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.
-attribute 値<img>に基づいて、CSS をタグに適用する方法を誰か教えてもらえますか?alt
<img>
alt
たとえば、ALT 値が DISAPPEAR の画像があります。
ホバーしたときに設定したい
img[DISAPPEAR]:hover { display:none; }
ただし、上記のコードは機能しないようです:(
どうぞ:
img[alt="DISAPPEAR"]:hover { display:none; }
それはこのように動作します: selector[attribute="value"]
selector[attribute="value"]
CoderOfHonor が言ったように、使用する必要があります
ただし、IE 8 以前で動作するには、<!DOCTYPE>!
<!DOCTYPE>