When you have long text associated with radio button in an ASP.NET RadioButtonList the text wraps under the radio button, rather than staying in line with the text on the first line.  To get it to wrap properly add CssClass="radiowrap" to the RadioButtonList control, with the CSS:

table.radiowrap
input { float: left; }
table.radiowrap label { margin-left: 22px; display: block; }

Comments are closed.