Aitmanga Posted March 24, 2004 Posted March 24, 2004 I have the following test code: <%@ Page Language="VB" %> <html> <head> </head> <body> <form runat="server"> <asp:Textbox id="Textbox1" runat="server" Width="250px"></asp:Textbox> </form> </body> </html> Nothing too fancy, only a TextBox is displayed. The problem is that in IExplorer the textbox renders with the appropiate width, but in Netscape it appears at the default width. It may not be a very large issue, but I want mi webform to look the same in both browsers. Any help is greatly appreciated Quote
kahlua001 Posted March 24, 2004 Posted March 24, 2004 Width does not work for Netscape, use a CssClass instead.. .textbox { width:250px } Quote
Aitmanga Posted March 25, 2004 Author Posted March 25, 2004 Width does not work for Netscape, use a CssClass instead.. .textbox { width:250px } thanks for the tip Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.