I can\'t seem to figure out how to get the checkbox and associated text to appear on one line. The text is very short so it doesn\'t seem to be a width issue. I tried settin
You want to have display:inline
applied to the <label>
element that ASP generates to hold the label text, not the control itself. So, for example:
<style type="text/css">
label { display: inline-block; }
</style>
<asp:CheckBox Text="This text appears on same line as checkbox" runat="server" />