I am currently facing an issue with my GridView that contains images. When I hover over the top of the image, it displays correctly, but when I move to the bottom, it does not show up. After some investigation, I suspect that there may be an overlay being caused by CSS, though I am not entirely certain how to resolve this.
https://i.sstatic.net/cy5SO.gif
Below is the CSS code in question:
.enlarge:hover {
transform:scale(5);
transform-origin:20% 20%;
}
Markup:
<asp:ImageField ItemStyle-CssClass="enlarge" DataImageUrlField="FileName" ItemStyle-HorizontalAlign="Center" ItemStyle-VerticalAlign="Middle" ControlStyle-Height="20px" HeaderText="Swatch">
<HeaderStyle HorizontalAlign="Center"/>
</asp:ImageField>
Credit for animation goes to: (an excellent tool for screen capturing to gifs - no affiliation)