how to make css button click disabled code example
Example 1: css disable button click
button.disabled{
pointer-events: none;
}
Example 2: css for disabled button
/* CSS Selectors for CSS2 and CSS3 both */
button:disabled,
button[disabled]{
border: 1px solid #999999;
background-color: #cccccc;
color: #666666;
}