<ul>
<div style="float:left">
<asp:LinkButton ID="lbtnFirst" runat="server" CausesValidation="false" OnClick="lbtnFirst_Click">İlk</asp:LinkButton></div>
<div style="float:left"><asp:LinkButton ID="lbtnPrevious" runat="server" CausesValidation="false" OnClick="lbtnPrevious_Click"> << </asp:LinkButton></div>
</ul>
In my Asp.net project I get this Warning :
Validation (XHTML 1.0 Transitional): Element 'div' cannot be nested within element 'ul'.
But when I click F5 everthing woks great. Now I am working on localhost in Visual Studio 2013 (Code side is C#) I want to ask can this make problem for my site in future ?
div
immediately inside aul
. What are you trying to accomplish with this? – Rouenul
. I write div because offloat:left
style. – Judiciousli
s? You can applyfloat: left
to them. – Rouen