How can styles be applied to CheckBoxList ListItems. Unlike other controls, such as the Repeater where you can specify , you can\'t seem to sp
It seems the best way to do this is to create a new CssClass. ASP.NET translates CheckBoxList into a table structure.
Using something like
Style.css
.chkboxlist td { font-size:x-large; }
Page.aspx
will do the trick