DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Define CSS For Enabled Button
Following is a sample CSS that will apply automatically to enabled button
CSS for Enabled button
.CButton
{
cursor: pointer;
border: solid 0px #ff0000;
height: 58px;
width: 58px;
outline-width: 0px;
background-image: url("Images/buttonenable.png");
background-repeat: no-repeat;
background-position: top right;
background-color: transparent;
}





