Reputation: 11
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
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