asp.net - Header Style Of Gridview not visible in Internet Explorer -
<asp:gridview id="gvschedulehistory" runat="server" width="100%" autogeneratecolumns="false" showfooter="false" > <headerstyle backcolor="#eeeeee" verticalalign="middle" horizontalalign="center" height="30px" cssclass="search" /> <rowstyle cssclass="gridview_row" /> <pagerstyle horizontalalign="right" borderstyle="solid" /> <columns> <asp:boundfield datafield="effectivedate" headertext="effective date" controlstyle-width="20%" headerstyle-width="20%" itemstyle-width="20%" /> <headerstyle backcolor="#eeeeee" verticalalign="middle" horizontalalign="center" height="30px" cssclass="search" /> </asp:gridview>
and css
.search { font-family: arial, helvetica, sans-serif; font-size: 12px; color: #f25d23; }
border of header visible in browser except ie
help?
Comments
Post a Comment