Saturday 10 September 2011

How to make Gridview Row color on Mouse Over Event using CSS


<style type="text/css">
    #GridView1 tr.rowHover:hover
    {
        background-color: pink;
        font-family: Arial;
    }
</style>
 
How To Apply

<asp:GridView ID="GridView1" runat="server" RowStyle-CssClass="rowHover">
</asp:GridView>
 

No comments:

Post a Comment