The following code renders perfect in IE, but Firefox adds immense padding in between my <tr> tags.
I have tried applying <table cellpadding = 0 cellspacing = 0>. It decreases the extra space so slightly its not even worth it. As a matter of fact, it closes the nice gaps in IE more than it does the large unwanted firefox gaps.
There has to be a way to fix this--there are so many people who are diehard slap happy about firefox I find it hard to believe the precious browser can't render my .net controls without exposing immense gaps???
Please help persuade me that Micro$oft is not the only one capable of being dependable these days. Please keep on post too, I'm sure this won't be an easy fix.
Thanks.
[HTML]<table>
<tr>
<td>
<p><b>Location: </b></p>
</td>
<td>
<asp:DropDownLi st ID="DropDownLis t1" runat="server" Font-Names="Arial" ForeColor="#465 D7E" Width="180px" Font-Size="X-Small">
<asp:ListItem >-Select Here-</asp:ListItem>
<asp:ListItem ></asp:ListItem>
<asp:ListItem ></asp:ListItem>
<asp:ListItem ></asp:ListItem>
</asp:DropDownLis t>
</td>
</tr>
<tr>
<td>
<p><b>Position: </b></p>
</td>
<td>
<asp:DropDownLi st ID="DropDownLis t2" runat="server" Font-Names="Arial" ForeColor="#465 D7E" Width="180px" Font-Size="X-Small">
<asp:ListItem >-Select Here-</asp:ListItem>
<asp:ListItem ></asp:ListItem>
<asp:ListItem ></asp:ListItem>
<asp:ListItem ></asp:ListItem>
</asp:DropDownLis t>
</td>
</tr>
<tr>
<td>
<p><b>Type:</b></p>
</td>
<td>
<asp:DropDownLi st ID="DropDownLis t3" runat="server" Font-Names="Arial" ForeColor="#465 D7E" Width="180px" Font-Size="X-Small">
<asp:ListItem >-Select Here-</asp:ListItem>
<asp:ListItem ></asp:ListItem>
<asp:ListItem ></asp:ListItem>
<asp:ListItem ></asp:ListItem>
</asp:DropDownLis t>
</td>
</tr>
<tr>
<td>
</td>
<td>
<asp:Button ID="Button1" runat="server" Text="Show available jobs" Font-Names="Arial" Font-Size="8pt" ForeColor="#465 D7E" />
</td>
</tr>
</table>[/HTML]
P.S. If you would like to see this example live please ask...I'll post URL. TY
I have tried applying <table cellpadding = 0 cellspacing = 0>. It decreases the extra space so slightly its not even worth it. As a matter of fact, it closes the nice gaps in IE more than it does the large unwanted firefox gaps.
There has to be a way to fix this--there are so many people who are diehard slap happy about firefox I find it hard to believe the precious browser can't render my .net controls without exposing immense gaps???
Please help persuade me that Micro$oft is not the only one capable of being dependable these days. Please keep on post too, I'm sure this won't be an easy fix.
Thanks.
[HTML]<table>
<tr>
<td>
<p><b>Location: </b></p>
</td>
<td>
<asp:DropDownLi st ID="DropDownLis t1" runat="server" Font-Names="Arial" ForeColor="#465 D7E" Width="180px" Font-Size="X-Small">
<asp:ListItem >-Select Here-</asp:ListItem>
<asp:ListItem ></asp:ListItem>
<asp:ListItem ></asp:ListItem>
<asp:ListItem ></asp:ListItem>
</asp:DropDownLis t>
</td>
</tr>
<tr>
<td>
<p><b>Position: </b></p>
</td>
<td>
<asp:DropDownLi st ID="DropDownLis t2" runat="server" Font-Names="Arial" ForeColor="#465 D7E" Width="180px" Font-Size="X-Small">
<asp:ListItem >-Select Here-</asp:ListItem>
<asp:ListItem ></asp:ListItem>
<asp:ListItem ></asp:ListItem>
<asp:ListItem ></asp:ListItem>
</asp:DropDownLis t>
</td>
</tr>
<tr>
<td>
<p><b>Type:</b></p>
</td>
<td>
<asp:DropDownLi st ID="DropDownLis t3" runat="server" Font-Names="Arial" ForeColor="#465 D7E" Width="180px" Font-Size="X-Small">
<asp:ListItem >-Select Here-</asp:ListItem>
<asp:ListItem ></asp:ListItem>
<asp:ListItem ></asp:ListItem>
<asp:ListItem ></asp:ListItem>
</asp:DropDownLis t>
</td>
</tr>
<tr>
<td>
</td>
<td>
<asp:Button ID="Button1" runat="server" Text="Show available jobs" Font-Names="Arial" Font-Size="8pt" ForeColor="#465 D7E" />
</td>
</tr>
</table>[/HTML]
P.S. If you would like to see this example live please ask...I'll post URL. TY
Comment