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.
stackoverflow.com のアバターとして、画像にカーソルを合わせたときに追加情報を表示する必要があります。より明確にするために画像を追加しますが、評判がありません. それを実装する方法は?
ありがとう。
これを試して:
CSS:
#image:hover ~ #extra { display: block; } #extra { display: none; }
そしてHTML:
<img id="image" src="example_image.png" /> <div id="extra">Info for img.</div>