Tutorial: How to Make ASP.NET Checkboxes Smaller Using CSS
Example CSS
.mychk input
{
height:8px;
width:8px;
}
Example Markup
<asp:CheckBox ID="chkRemember" CssClass="mychk" runat="server" Text="Remember Me" />
Published: August 22, 2012
Author's Note: Setting the height and width only makes checkboxes smaller. This method does not work for making checkboxes larger.