Hello all,
I have a little problem with asp:button and css with internet explorer. My code for the button looks like:
<asp:Button CssClass="search" id="btnSearch" runat="server" Text="Search"
OnCommand="btnSearch_Click" CommandName="search"></asp:Button> |
.
the css "search" looks like:
.search
{
position:absolute;
top:132px;
left:603px;
} |
.
The problem is on Internet Explorer the button looks stretched out, and all I wanted the css to do is position the button on the page. On Firefox the button is positioned correctly and appears the way it should.
Any know what I am doing wrong here?
Thanks.