|
Reduce td vertical height
can you guys help to find some solution for reduce td height.
below is my code:
Note: i must use " " before colsing td.
<tr id="trVendorClassification" runat="server">
<td width="20%" class="credentials">
Vendor Classification:
</td>
<td width="80%" class="credentialsData" colspan="3" style="padding-left: 0px;">
<asp:Label ID="lblClassificationV" runat="server" Visible="false" Text = ""></asp:Label>
<asp:CheckBoxList ID="chkVendorClassification" runat="server" RepeatDirection="Horizontal">
<asp:ListItem Value="0" Text="Bank"></asp:ListItem>
<asp:ListItem Value="1" Text="Canon Group/Subsidiaries"></asp:ListItem>
<asp:ListItem Value="2" Text="Suppliers" Selected="True"></asp:ListItem>
<asp:ListItem Value="3" Text="Government Bodies & Essential Services"></asp:ListItem>
</asp:CheckBoxList>
</td>
</tr>
|