如何左对齐页脚元素

时间:2010-12-15 06:35:27

标签: asp.net gridview

我在GridView的FooterTemplate元素的对齐方面遇到了问题。 任何人都建议我怎么做。代码是:

<asp:GridView ID="gvComment" runat="server" AutoGenerateColumns="false" 
OnRowDataBound="gvComment_RowDataBound" OnRowCreated="gvComment_RowCreated" Width="100%" ShowHeader="false" BorderWidth="0px" ShowFooter="true">
<Columns>
 <asp:TemplateField>
  <ItemTemplate>
   <table border="0" cellpadding="0" cellspacing="0" width="100%" >
    <tr>
     <td valign="middle" align="left" style="width:10%"><img id="imgUser" src="" alt="" title="" runat="server" /></td>
     <td align="left" valign="top">
      comment comment
      <asp:Label ID="lblNameComments" runat="server" Visible="false" ></asp:Label>
     </td>
    </tr>
    <tr><td colspan="2" style="height:7px;"></td></tr>
    <tr>
     <td colspan="2" style="padding-top:10px;background-image:url(../Images/dotted_line.jpg);background-repeat:repeat-x;background-position:center;"></td>
    </tr>
    <tr><td colspan="2" style="height:7px;"></td></tr>
   </table>            
  </ItemTemplate>
 </asp:TemplateField>
 <asp:TemplateField>
  <FooterTemplate >
  <table border="0" cellpadding="0" cellspacing="0" width="100%" >
   <tr>
    <td align="left">
     Footer Text
       Footer Text
       Footer Text         
    </td>
   </tr>
  </table>
  </FooterTemplate>
 </asp:TemplateField>
</Columns>
</asp:GridView>

我已将td的align属性设置为left但它不起作用.Page输出的页面输出。

alt text

1 个答案:

答案 0 :(得分:0)

它确实左对齐。

请在此填写完整代码(包括css): http://jsfiddle.net/T364r/