我想将网格视图的标题对齐设置为网格的中心。CaptionAlign="" 属性将标题与“Top”、“Left”、“Bottom”和“Right”对齐
如何在 ASP.NET 中将标题对齐到网格视图的中心
您可以将标题对齐为:
<asp:GridView ID="grd" runat="server">
<HeaderStyle HorizontalAlign="Right" />
要对齐单元格:
ItemStyle-HorizontalAlign="Right"
对于垂直对齐:
ItemStyle-VerticalAlign="Right
我知道的最好的方法是使用 CSS。举个例子:
<style>
table caption {
text-align:center;
}
</style>
<asp:GridView ID="YourGrid" runat="server" Caption="Caption is now centered">
</asp:GridView>
注意:虽然样式说“表格标题”,但 gridview 最终会在浏览器中呈现为表格,因此它会起作用。(无论如何对我来说)