Posted on: 12/2/2013 10:30:20 PM | Views : 759

How I can convert CSS code for form tag to div, as I cannot have a form tag in my page.
That is the CSS code for Form tag:
form { margin: 0; } /** * Define consistent border, margin, and padding. */ fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; } legend { border: 0; /* 1 */ padding: 0; white-space: normal; /* 2 */ *margin-left: -7px; /* 3 */ }  
This is my page that uses Form tag:
 
<div class="SignUp"> <div class="Title">Sign Up! It's quick and easy</div> <form> <asp:TextBox runat="server" ID="lastname" placeholder="Name"></asp:TextBox> <asp:TextBox runat="server" ID="zip" placeholder="Zip Code" maxlength="5" ></asp:TextBox> <a ...

Go to the complete details ...