Hi everybody,
I have this:
[css]
<style>
.CheckBoxList {
font-size: 12px;
color: #333333;
}
.CheckboxList input {
line-height: 20px;
float: left;
clear: both;
position: relative;
top: 10px;
}
.content {
/*display:inline-table;*/
line-break: normal;
line-height: 12px;
/*padding-top:120px;*/
height:auto;
}
</style>
<tr>
<td class="content" cssclass="content">Selecteer een pastype</td>
<td class="content">
<%-- <br />--%>
<asp:CheckBoxList ID="ChlPassType" CssClass="CheckBoxList" runat="server" RepeatDirection="Horizontal" RepeatLayout="Table" TextAlign="left" CellPadding="1"
CellSpacing="1"
RepeatColumns="1">
</asp:CheckBoxList>
</td>
</tr>
<tr>
<td class="content" colspan="3">
<asp:Label ID="lblMessage" CssClass="alert" runat="server" /></td>
</tr>
<tr>
<asp:Label ID="LblMelding" runat="server" Text="Label"></asp:Label>
<td class="content" colspan="3">
<asp:Button ID="btnExport" Text="Export" runat="server" /></td>
</tr>
</table>
</asp:Content>
[css]
but the title: Selecteer een pastype
stays not top, but renders with the checkboxes.