how to remove space under a table?

DypeCreeryday

New Member
Here what I've done and whats my problem. First of all i got a big table with a lot of td the first td on top of my table containt anoter table and (here come my problem) theres a space under that little table and I don't know why. Here's the code for my table:\[code\]<div runat="server" class="ReportPage" > <table runat="server" class="ListReportBigTable" align="center"> <tr> <td class="style13" colspan="3" > <table width="46%" align="center"style="height:50%; "cellpadding="0"> <tr> <td align="left"> <asp:Label ID="LB_ChooseReport" runat="server" Text="Choisissez un dossier m&eacute;dical: " Font-Size="Small"> </asp:Label> </td> </tr> <tr> <td style="vertical-align:bottom" align="left"> <asp:UpdatePanel ID="UpdatePanel3" runat="server"> <ContentTemplate> <div id="div_Filter" runat="server" visible="false" align="left"> <asp:Label ID="LBL_FilteredBy" runat="server" width="18%" Text="Patient : " Font-Size="Small" style="margin-left: 0px"></asp:Label> <asp:DropDownList ID="DDL_FilterSelect" runat="server" AutoPostBack="true" Width="25%" CssClass="DDL_Filter" Font-Size="Small" Height="18px"></asp:DropDownList> </div> </ContentTemplate> </asp:UpdatePanel></td></tr></table> <br /> </td>\[/code\]and here the CSS:\[code\].ListReportBigTable{ height:25%; width:55%; text-align:center; vertical-align:middle; border: thick solid black; margin-left: 0px;}\[/code\]thx in advance
 
Back
Top