Beso
Beso

Reputation: 11

Hide & show image when mouse over

I am working on pictures inside ASP.net (VB) and try to make this picture hide when the mouse over and show if it mouse out How can I do this without using script or jQuery ?

help me please

Upvotes: 0

Views: 1390

Answers (1)

keyboardP
keyboardP

Reputation: 69372

You can do this in Javascript or CSS.

For example, to use CSS:

<img class="hideshowimage" ... />

and in your CSS

.hideshowimage:hover { visibility:hidden; }

Upvotes: 2

Related Questions