这个font标签是在页面源代码中看到的,还是用Firebug看到的?
是在firebug看到的啊,在火狐下就多出了<font size="5">
@程序新青年:
建议直接查看源代码,firebug中看到的与源代码有区别,比如通过js中添加的标签,在firebug中会看到。
建议通过 http://validator.w3.org/ 检查一下HTML代码,可能就会找到问题所在。
@dudu:
<ItemTemplate> <div class="all"> <ul> <li><span class="date"> <asp:Image ID="imgTop" runat="server" ImageUrl="images/ontop.gif" Visible='<%# DataBinder.Eval(Container,"DataItem.IsTop") %>'> </asp:Image> <asp:Image ID="imgHot" runat="server" ImageUrl="images/hot.gif" Visible='<%# DataBinder.Eval(Container,"DataItem.Hot") %>'> </asp:Image> </span><span class="title"> <asp:HyperLink ID="hlkTitle" Width="445" runat="server" Target="_blank" Height="21px"></asp:HyperLink><%# DataBinder.Eval(Container,"DataItem.PostTime","{0:yyyy-MM-dd}")%></span></li> </ul> </div> </ItemTemplate>
在火狐下 <ItemTemplate>
<div class="all"> 之间多出了个<font size="5"> 程序是vs2003写的,其他浏览器没这情况