Disabled UI Style
Preview
Code
<style>
button{
padding:10px 16px;
}
button:disabled{
background:#9ca3af;
color:white;
cursor:not-allowed;
}
</style>
<button disabled>Disabled Button</button>
<style>
button{
padding:10px 16px;
}
button:disabled{
background:#9ca3af;
color:white;
cursor:not-allowed;
}
</style>
<button disabled>Disabled Button</button>