Pseudo-class selector: Set the background-color to pink for any button that is :disabled. code example
Example: css disabled
<input type="text" name="username" value="admin" >
<style type="text/css">
input[name=username] {
pointer-events: none;
}
</style>