I’ve a GridView
with TemplateField
s.
I have tried HeaderStyle-HorizontalAlign="Center"
to align the header text of the TemplateField to center but it’s not working.
JavaScript
x
4
1
<asp:TemplateField HeaderText="Events" HeaderStyle-HorizontalAlign="Center"
2
ItemStyle-HorizontalAlign="Center">
3
</asp:TemplateField>
4
How I can align center the header text of a TemplateField?
While ItemStyle-HorizontalAlign="Center"
aligning center the items of TemplateField is working correctly.
Advertisement
Answer
The <center>
tag is deprecated in HTML 4.01 and not supported in HTML5 – the working code you posted could be “CSS-ified” as follows:
JavaScript
1
8
1
<asp:TemplateField ItemStyle-HorizontalAlign="Center">
2
<HeaderTemplate>
3
<asp:Panel style="margin-left: auto; margin-right: auto; text-align: center;">
4
Events
5
<asp:Panel>
6
</HeaderTemplate>
7
<asp:TemplateField>
8
(Note: Panel
is the ASP.Net equivalent of a <div>
.)
A slight improvement here is to define a CSS class for the style so it can be reused elsewhere:
JavaScript
1
6
1
.center {
2
margin-left: auto;
3
margin-right: auto;
4
text-align: center;
5
}
6
…and reference it from the panel instead of using the inline style:
JavaScript
1
2
1
<asp:Panel CssClass="center">
2