I have a Panel that contains a bunch of TextBoxes. I have added the margin attribute to my CSS file. Currently, I can get it to display properly in Firefox, but when I view it in IE and Chrome there is no margin.
Textbox
asp:TextBox ID="txtInvoiceDate" Font-Bold="true" runat="server" CssClass="TextBox"></asp:TextBox>
CSS
.TextBox
{
margin: 5px;
}
Initially when I save the project, it will display the margins. When I refresh the page, the margins disappear.
Any help would be greatly appreciated.