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

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -